mirror of
https://github.com/jugeeya/UltimateTrainingModpack.git
synced 2025-03-06 14:52:19 +00:00
17 lines
198 B
C++
17 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
|