10 lines
232 B
C#
10 lines
232 B
C#
using GameServiceWarden.ClientAPI.Module;
|
|
|
|
namespace GameServiceWarden.Core.Module
|
|
{
|
|
public interface IServiceManagerActionExecuter
|
|
{
|
|
void ExecuteAction(ServiceManagerAction action);
|
|
void ViewState();
|
|
}
|
|
} |