1
0
Fork 0
mirror of https://github.com/jugeeya/UltimateTrainingModpack.git synced 2025-03-06 14:52:19 +00:00
UltimateTrainingModpack/source/l2c.hpp
Shivam Dutt 1f9d492626 Updated to latest version of code-mod-framework
Fixed formatting and indentation
2019-05-27 17:08:56 -05:00

14 lines
184 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