Select Git revision
GameObject.hpp
-
BATON Theau authoredBATON Theau authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
GameObject.hpp 162 B
#pragma once
namespace megu::game {
class GameObject {
public:
virtual void setup() = 0;
virtual void destroy() = 0;
};
}