10 lines
232 B
C#

using GameServiceWarden.InteractionAPI.Module;
namespace GameServiceWarden.Core.Module
{
public interface IServiceManagerActionExecuter
{
void ExecuteAction(ServiceManagerAction action);
void View();
}
}