Mercurial > LightClone
view LightClone/Source/Types.h @ 41:a986355cca5f
Move Tower structure into Environment
author | koryspansel |
---|---|
date | Thu, 22 Sep 2011 10:25:35 -0700 |
parents | c046b9e8ae32 |
children |
line wrap: on
line source
/* * Types */ #ifndef __TYPES_H__ #define __TYPES_H__ /* * int8 */ typedef signed char int8; /* * int16 */ typedef signed short int16; /* * int32 */ typedef signed int int32; /* * uint8 */ typedef unsigned char uint8; /* * uint16 */ typedef unsigned short uint16; /* * uint32 */ typedef unsigned int uint32; /* * ErrorCode */ typedef int32 ErrorCode; /* * Error */ enum { Error_Success = 0, Error_Fail = -1, }; #endif //__TYPES_H__