e75208507d
- Refactored and flattened namespaces.
10 lines
225 B
C#
10 lines
225 B
C#
|
|
using Barotrauma.Networking;
|
|
|
|
namespace Barotrauma.LuaCs;
|
|
|
|
internal partial interface INetworkingService : IReusableService
|
|
{
|
|
void NetMessageReceived(IReadMessage message, ClientPacketHeader header, Client client);
|
|
}
|