Last active
January 28, 2017 21:57
-
-
Save PoetaKodu/59fdb34c82c32380a64553fa59bfef5b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
enum Status | |
{ | |
Initializing = 0, // Ten status zostanie ustawiony gdy wejdziemy do konstruktora klasy gry. | |
Running = 1, // Ten status zostanie ustawiony gdy rozpoczniemy grę. | |
Paused = 2, // Ten status zostanie ustawiony gdy użytkownik zapauzuje gre. | |
CleaningUp = 3 // Ten status zostanie ustawiony gdy użytkownik zamknie aplikację. | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment