5 lines
100 B
C++
5 lines
100 B
C++
class IUpdatable {
|
|
public:
|
|
virtual ~IUpdatable() = default;
|
|
virtual bool onUpdate() = 0;
|
|
}; |