NBloodServerSupervisor/Supervisor/Packets/Frags.cs

18 lines
300 B
C#
Raw Normal View History

2020-01-23 21:03:54 +01:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Supervisor
{
class Frags : PacketData
{
public IList<int> Scores { get; set; }
public int GameType { get; set; }
public Frags()
{
IsStarted = true;
}
}
}