11d37d4cd6
Added response to RCON command if applicable Added more maps into the map config
19 lines
380 B
C#
19 lines
380 B
C#
using System;
|
|
|
|
namespace SharedLibrary
|
|
{
|
|
public class Report
|
|
{
|
|
public Report(Player T, Player O, String R)
|
|
{
|
|
Target = T;
|
|
Origin = O;
|
|
Reason = R;
|
|
}
|
|
|
|
public Player Target { get; private set; }
|
|
public Player Origin { get; private set; }
|
|
public String Reason { get; private set; }
|
|
}
|
|
}
|