mirror of
https://gitlab.com/voidframe/voidframe-cpp.git
synced 2026-09-22 03:47:16 -04:00
15 lines
211 B
C++
15 lines
211 B
C++
#pragma once
|
|
class Entity;
|
|
|
|
class Component {
|
|
public:
|
|
virtual void Init();
|
|
virtual void Draw();
|
|
virtual void Update();
|
|
virtual void FixedUpdate();
|
|
virtual void Destroy();
|
|
|
|
private:
|
|
Entity *owner;
|
|
};
|