Skip to content

Instantly share code, notes, and snippets.

@PoetaKodu
Last active January 28, 2017 21:57
Show Gist options
  • Save PoetaKodu/59fdb34c82c32380a64553fa59bfef5b to your computer and use it in GitHub Desktop.
Save PoetaKodu/59fdb34c82c32380a64553fa59bfef5b to your computer and use it in GitHub Desktop.
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