I have this error called Inconsistent accessibility:
field type \'world\' is less accessible than field \'frmSplashScreen\'
In
Generally this happens because your field is private. You must change it to public:
private
public
public world currentWorld;
For more on this, take a look here: Restrictions on Using Accessibility Levels (C# Reference)