aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Transform.h
diff options
context:
space:
mode:
authorheavydemon21 <nielsstunnebrink1@gmail.com>2024-10-23 19:56:28 +0200
committerheavydemon21 <nielsstunnebrink1@gmail.com>2024-10-23 19:56:28 +0200
commitc9246515fe785563411e9170aedd0231165ab988 (patch)
treee3b713e1e1200b26861e951e0b1ac4ab64d4eab6 /src/crepe/Transform.h
parentadb7dfabec4811566308cd072e0542cd7eae8cc1 (diff)
rendering and assetmanager
Diffstat (limited to 'src/crepe/Transform.h')
-rw-r--r--src/crepe/Transform.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/crepe/Transform.h b/src/crepe/Transform.h
deleted file mode 100644
index 3e8d142..0000000
--- a/src/crepe/Transform.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#pragma once
-
-#include "Component.h"
-
-namespace crepe {
-
-struct Position
-{
- int x;
- int y;
-};
-
-
-class Transform : public Component {
-public:
- Transform(uint32_t gameObjectId,Position position, int rotation, int scale);
- Position postion;
- int rotation;
- int scale;
-};
-
-} // namespace crepe