]> git.xonotic.org Git - xonotic/gmqcc.git/blob - test/typedef.qc
Updated README
[xonotic/gmqcc.git] / test / typedef.qc
1 typedef float  my_float;
2 typedef vector my_vector;
3 typedef string my_string;
4 typedef entity my_entity;
5 typedef void   my_void;
6
7 my_float  type_float;
8 my_vector type_vector;
9 my_string type_string;
10 my_entity type_entity;
11 my_void   type_void;