mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-23 04:16:50 +01:00
18 lines
262 B
C++
18 lines
262 B
C++
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
#include <math.h>
|
|
#include <float.h>
|
|
#include "FloatMath.h"
|
|
#include <vector>
|
|
|
|
#define REAL float
|
|
|
|
#include "FloatMath.inl"
|
|
|
|
#undef REAL
|
|
#define REAL double
|
|
|
|
#include "FloatMath.inl"
|