Created
April 8, 2017 20:40
-
-
Save PoetaKodu/8b70c32d9834b3bd6c8fa46f991d752a 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
class IAISense | |
{ | |
/* Tutaj reszta kodu... */ | |
public: | |
/* Ta metoda będzie wyswietlala informacje dla debugowania. | |
Przykladowo bedzie pokazywala dzialanie zmyslu wzroku (obszar widzenia, postrzeganych aktorow itp.) | |
Nie jest to metoda czysto wirtualna (=0) gdyz nie wymagamy, by klasy potomne musialy miec implementacje | |
tej metody. Zostawiamy ja domyslnie po prostu pusta. | |
*/ | |
inline virtual void DrawDebug() { } | |
public: | |
/* Informuje czy jestesmy w trybie debuggingu czy nie. | |
Jesli debugujemy to debugujemy wszystko, dlatego jest to zmienna statyczna. | |
*/ | |
static bool DebugMode; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment