mirror of
https://github.com/MilkBarModding/MilkBarLauncher.git
synced 2025-06-16 12:11:01 +00:00
13 lines
233 B
C#
13 lines
233 B
C#
using BOTWM.Server.DataTypes;
|
|
|
|
namespace BOTWM.Server.DTO
|
|
{
|
|
public class PropHuntDTO
|
|
{
|
|
public bool IsPlaying;
|
|
public byte Phase;
|
|
public Vec3f StartingPosition;
|
|
public bool IsHunter;
|
|
}
|
|
}
|