// // Author: Michael Cameron // Email: chronokun@hotmail.com // #pragma once #ifndef __LIBRARIES_H__ #define __LIBRARIES_H__ // Visual Leak Detector #if defined(DEBUG) || defined(_DEBUG) //#include #endif // Platform Libraries #define NOMINMAX //#define WIN32_LEAN_AND_MEAN //#include /* // Chronokun Libraries #include "ckmath/ckmath.h" */ #include #include // C++ Libraries #include #include #include #include #include #include #include #include #include #include #include #include #include // Vector access - since the data type has changed from struct to array. #define X 0 #define Y 1 #define Z 2 #endif