7 lines
114 B
C++
7 lines
114 B
C++
#pragma once
|
|
|
|
class IUpdatable {
|
|
public:
|
|
virtual ~IUpdatable() = default;
|
|
virtual bool onUpdate() = 0;
|
|
}; |