2025-01-20 14:05:21 -06:00

13 lines
135 B
C++

#pragma once
#include "Vec3f.h"
using namespace DataTypes;
namespace DTO
{
class TeleportDTO
{
public:
Vec3f Destination;
};
}