| 4 | namespace ZEngine::Core { |
| 5 | |
| 6 | struct IUpdatable { |
| 7 | IUpdatable() = default; |
| 8 | virtual ~IUpdatable() = default; |
| 9 | |
| 10 | virtual void Update(TimeStep dt) = 0; |
| 11 | }; |
| 12 | } // namespace ZEngine::Core |
nothing calls this directly
no outgoing calls
no test coverage detected