Skip to content

Instantly share code, notes, and snippets.

@PoetaKodu
Created April 8, 2017 20:15
Show Gist options
  • Save PoetaKodu/3bc685b6219b0645b65e137136144fa0 to your computer and use it in GitHub Desktop.
Save PoetaKodu/3bc685b6219b0645b65e137136144fa0 to your computer and use it in GitHub Desktop.
// Deklaracja w pliku .hpp
// Metoda, ktorej uzyjemy do update-owania zmyslow
virtual void Update(const float &deltaTime) override;
// Definicja w pliku .cpp
void CEnemy::Update(const float & deltaTime)
{
// Bardzo wazne! Wykonujemy tez to co wykonuje klasa bazowa!
IPawn::Update(deltaTime);
// Uaktualniamy nasz zmysl wzroku.
m_sightSense.QueryActors();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment