Created
April 8, 2017 20:15
-
-
Save PoetaKodu/3bc685b6219b0645b65e137136144fa0 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// 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