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