initial commit of the files

This commit is contained in:
2024-04-13 11:42:25 +02:00
commit 8f161be085
25 changed files with 1661065 additions and 0 deletions

16
lib/object.h Normal file
View File

@@ -0,0 +1,16 @@
#pragma once
class GameObject {
public:
GameObject() = default;
app::GameObject* FindWithTag(const char* tag);
template<typename T>
T* GetComponent();
private:
app::GameObject* _currentGameObject = nullptr;
};