mirror of
https://github.com/CommonLoon102/NBloodServerSupervisor.git
synced 2024-12-23 19:22:45 +01:00
18 lines
300 B
C#
18 lines
300 B
C#
|
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|