mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
17 lines
225 B
C#
17 lines
225 B
C#
using System.ServiceProcess;
|
|
|
|
namespace Roblox.ServiceProcess;
|
|
|
|
public class ServiceBasePublic : ServiceBase
|
|
{
|
|
public void OnStartPublic(string[] args)
|
|
{
|
|
OnStart(args);
|
|
}
|
|
|
|
public void OnStopPublic()
|
|
{
|
|
OnStop();
|
|
}
|
|
}
|