Files
LuaCsForBarotraumaEP/Barotrauma/BarotraumaServer/Source/Networking/GameClient.cs
2017-07-05 18:35:09 +03:00

13 lines
254 B
C#

using System;
namespace Barotrauma.Networking
{
class GameClient : NetworkMember
{
public GameClient(string newName)
{
throw new Exception("Tried to create GameClient in dedicated server build");
}
}
}