So I have my main game class and have created an enum for game state. How do I make this enum accessible to other classes? I know you have to make it public but I cant seem to make it accessible to other classes. What I'm trying to do is have a bunch of different classes to be able to check the current game state via enum and do different things depending on the current game state.
|
feedback
|
|
There are two main ways to do this.
I prefer option 2 as it makes your dependencies more explicit.
However, exposing your game state to an object other than the game should be avoided if possible. It breaks the encapsulation of your game and tightly couples your objects together. Do the objects really need to know your game state or is there a more specific thing they need to know in order to operate? Can you have two separate objects, one corresponding to each game state that are controlled by the game class? | |||
feedback
|
|
depending on what namespace it's in, you might have to place the following line (or one similar) at the top of any .cs file that you want to have access to it:
That exposes the enum so that you can reference it without having to fully qualify it or, if what you mean is that you need a way to access the current game's state, then you need to have a reference to something. One thing that many people do is make a public property on the | |||
|
feedback
|
This means there will only be one instance of State regardless of how many GameClass instances you create, but it seems like that'd be desired behavior in this case. You can access it with GameClass.State instead of gameClassInstance.State | |||
|
feedback
|