summaryrefslogtreecommitdiff
path: root/Runtime/Math/Math.h
blob: 80f23f7ffbabd72e50cd44c9472f1c0d84b361c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include "Vector2.h"
#include "Vector3.h"
#include "Vector4.h"
#include "Matrix44.h"
#include "FloatConversion.h"
#include "Rect.h"
#include "MathHelper.h"

typedef Internal::Vector3  Vector3;
typedef Internal::Vector4  Vector4;
typedef Internal::Matrix44 Matrix44;
typedef Internal::Rect     Rect;

typedef Internal::Vector2T<int> Vector2i;
typedef Internal::Vector2T<float> Vector2f;