Files
Project-Reboot-3.0/Project Reboot 3.0/Vector.h
2023-03-04 15:06:07 -05:00

9 lines
71 B
C++

#pragma once
struct FVector
{
public:
float X;
float Y;
float Z;
};