22 lines
658 B
C
22 lines
658 B
C
/*=============================================================================*/
|
|
// Copyright 2021-2022 Elite Engine
|
|
// Authors: Matthieu Delaere
|
|
/*=============================================================================*/
|
|
// EMath.h: General Math header that includes all math types and utilities
|
|
/*=============================================================================*/
|
|
#ifndef ELITE_MATH
|
|
#define ELITE_MATH
|
|
|
|
/* --- STANDARD --- */
|
|
#include <math.h>
|
|
/* --- UTILITIES --- */
|
|
#include "EMathUtilities.h"
|
|
/* --- TYPES --- */
|
|
#include "EVector2.h"
|
|
#include "EVector3.h"
|
|
#include "EMat22.h"
|
|
#include "FMatrix.h"
|
|
|
|
/* --- TYPE DEFINES --- */
|
|
#endif
|