Skip to content

Instantly share code, notes, and snippets.

@PoetaKodu
Created April 8, 2017 20:40
Show Gist options
  • Save PoetaKodu/8b70c32d9834b3bd6c8fa46f991d752a to your computer and use it in GitHub Desktop.
Save PoetaKodu/8b70c32d9834b3bd6c8fa46f991d752a to your computer and use it in GitHub Desktop.
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