
- ReflectedManager now supports MemberInfo and event replacement - New chat manager interfaces for both client and server - New multiplayer manager interfaces for both client and server
13 lines
238 B
C#
13 lines
238 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Torch.API.Managers
|
|
{
|
|
public interface IMultiplayerManagerClient : IMultiplayerManagerBase
|
|
{
|
|
}
|
|
}
|