Initial commit

This commit is contained in:
Eagle517
2025-02-17 23:17:30 -06:00
commit 7cad314c94
4726 changed files with 1145203 additions and 0 deletions

29
lib/dtsSDK/DTSTypes.h Executable file
View File

@@ -0,0 +1,29 @@
#ifndef __DTSTYPES_H
#define __DTSTYPES_H
#include <vector>
#include <string>
#include <ostream>
#include <cmath>
#include <cassert>
#include "DTSPoint.h"
#ifndef _WIN32
#define __cdecl
#define strnicmp strncasecmp
#define stricmp strcasecmp
inline float min(float a, float b) { return a<b ? a : b; }
inline float max(float a, float b) { return a>b ? a : b; }
#endif
//! The DTS namespace implements all the classes needed to load a DTS model
//! and to create one from the Milkshape data. There are many basic classes
//! here, such as Point or Quaternion.
namespace DTS
{
}
#endif