Long-Starlight-Snake-Game/IBehaviour.hpp

7 lines
94 B
C++

#include "SynEngine.hpp"
class IBehaviour
{
public:
virtual void Update() = 0;
};