- ContentPackageInfoLookup Service completed. - Implemented ModConfigService.cs - Implemented some of the resource processors.
16 lines
202 B
C#
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
|