Cube-World-Commands-Mod/cwmods/common/FloatVector3.h

15 lines
229 B
C
Raw Normal View History

2019-09-23 07:50:21 +08:00
#ifndef FLOATVECTOR3_H
#define FLOATVECTOR3_H
class FloatVector3 {
public:
float x;
float y;
float z;
FloatVector3(float x, float y, float z);
};
#endif // FLOATVECTOR3_H