diff options
Diffstat (limited to 'hk21/game/gpu.hpp')
-rw-r--r-- | hk21/game/gpu.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hk21/game/gpu.hpp b/hk21/game/gpu.hpp index 40a0973..fb74e20 100644 --- a/hk21/game/gpu.hpp +++ b/hk21/game/gpu.hpp @@ -16,6 +16,8 @@ public: virtual ~Gpu() = default;
virtual void destroy() = 0;
+
+ virtual void frame() = 0;
};
asl::status_or<asl::box<Gpu>> init(SDL_Window* window);
|