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
5
namespace
Grindstone::Reflection {
6
struct
TypeDescriptor
{
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,
28
AssetReference
,
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
}
Float2
Definition
InputManager.cpp:52
Grindstone::AssetReference
Definition
Asset.hpp:44
Grindstone.Entity
Definition
Entity.cs:5
Grindstone::Reflection::TypeDescriptor
Definition
TypeDescriptor.hpp:6
sources
code
EngineCore
Reflection
TypeDescriptor.hpp
Generated by
1.12.0