blob: 7f61544dc87d2cf0406f4c39e8ac91e15caae44c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "Vector2.h"
#include "Vector3.h"
#include "Vector4.h"
#include "Matrix44.h"
#include "FloatConversion.h"
#include "Rect.h"
#define max(a, b)\
(a)>(b)?(a):(b)
|