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

17 lines
209 B
C++

#pragma once
#include <Windows.h>
#include "Vec3f.h"
using namespace DataTypes;
namespace DTO
{
class PropHuntDTO
{
public:
bool IsPlaying;
byte Phase;
Vec3f StartingPosition;
bool IsHunter;
};
}