mirror of
https://github.com/jugeeya/UltimateTrainingModpack.git
synced 2025-02-01 06:57:25 +00:00
16 lines
198 B
C++
16 lines
198 B
C++
#ifndef L2C_H
|
|
#define L2C_H
|
|
|
|
typedef struct Hash40
|
|
{
|
|
uint64_t hash : 40;
|
|
} Hash40;
|
|
|
|
typedef struct Vector3f
|
|
{
|
|
float x;
|
|
float y;
|
|
float z;
|
|
} Vector3f;
|
|
|
|
#endif // L2C_H
|