blob: 5e086139dc0369f40e2c70b94d5422319870b93e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#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::Vector2 Vector2;
typedef Internal::Vector3 Vector3;
typedef Internal::Vector4 Vector4;
typedef Internal::Matrix44 Matrix44;
typedef Internal::Rect Rect;
|