mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-22 06:05:38 +01:00
17 lines
305 B
C
17 lines
305 B
C
|
#pragma once
|
||
|
|
||
|
// Windows Header Files:
|
||
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
||
|
#include <windows.h>
|
||
|
|
||
|
// 3dsmax headers
|
||
|
#include <max.h>
|
||
|
#include <iparamm2.h>
|
||
|
#include <stdmat.h>
|
||
|
|
||
|
// STL
|
||
|
#include <vector>
|
||
|
#include <string>
|
||
|
|
||
|
// Game SDK includes
|
||
|
#include <DataTypes.h>
|