2021-04-21 02:00:50 -05:00
|
|
|
using GameServiceWarden.InteractionAPI.Module;
|
2021-04-08 21:36:08 -05:00
|
|
|
|
2021-04-19 01:34:45 -05:00
|
|
|
namespace GameServiceWarden.Core.Module
|
2021-04-08 21:36:08 -05:00
|
|
|
{
|
|
|
|
public interface IServiceManagerMonitor
|
|
|
|
{
|
2021-04-21 01:14:05 -05:00
|
|
|
void Present(ServiceManagerTotal state);
|
|
|
|
void Present(ServiceManagerDelta delta);
|
2021-04-08 21:36:08 -05:00
|
|
|
}
|
|
|
|
}
|