mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-31 12:00:38 +00:00
12 lines
240 B
C++
12 lines
240 B
C++
|
typedef float my_float;
|
||
|
typedef vector my_vector;
|
||
|
typedef string my_string;
|
||
|
typedef entity my_entity;
|
||
|
typedef void my_void;
|
||
|
|
||
|
my_float type_float;
|
||
|
my_vector type_vector;
|
||
|
my_string type_string;
|
||
|
my_entity type_entity;
|
||
|
my_void type_void;
|