Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
TypeDescriptor.hpp
1#pragma once
2
3#include <string>
4
5namespace Grindstone::Reflection {
7 const char* name;
8 size_t size;
9
10 enum class ReflectionTypeData : char {
11 Struct = 0,
12 Vector,
13 String,
14 Bool,
15 Int,
16 Int2,
17 Int3,
18 Int4,
19 Float,
20 Float2,
21 Float3,
22 Float4,
23 Double,
24 Double2,
25 Double3,
26 Double4,
27 Quaternion,
29 Entity
30 };
31 ReflectionTypeData type;
32
33 TypeDescriptor() = default;
34 TypeDescriptor(const char* name, size_t size, ReflectionTypeData t) : name{ name }, size{ size }, type{ t } {}
35 virtual ~TypeDescriptor() {}
36 virtual const char* GetFullName() const { return name; }
37 };
38}
Definition InputManager.cpp:52
Definition Asset.hpp:44
Definition Entity.cs:5
Definition TypeDescriptor.hpp:6