//***********************************************************//
// Demo:    CubeMap Demo
// Author:  terror
//***********************************************************//
#pragma once
#define  NEW_ARRAY_MEM(a,t,c)	{a = NULL; a = new t[c]; memset(a,0,sizeof(t));}
#define  DELETE_ARRAY_MEM(x)	{if (x != NULL) delete []x; x = NULL;}
typedef unsigned int     uint;
typedef unsigned char    byte;
typedef unsigned short   ushort;
typedef unsigned __int64 uint64;
typedef unsigned long    dword;
