Files
LuaCsForBarotraumaEP/Barotrauma/BarotraumaShared/SharedSource/LuaCs/Networking/INetCallback.cs
MapleWheels 52d920d969 [Milestone] PackageManagementService completed.
- ContentPackageInfoLookup Service completed.
- Implemented ModConfigService.cs
- Implemented some of the resource processors.
2026-02-07 20:10:45 -05:00

16 lines
202 B
C#

using System;
namespace Barotrauma.LuaCs.Services;
public partial interface INetCallback
{
public ushort CallbackId { get; }
}
#if SERVER
public partial interface INetCallback
{
}
#endif