blob: 3b81bef534f331d9e079bd5c4e76d40f5a860869 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
namespace crepe {
class System {
public:
virtual void update() = 0;
public:
System() = default;
virtual ~System() = default;
};
} // namespace crepe
|