12 lines
127 B
C#
12 lines
127 B
C#
|
using System;
|
||
|
|
||
|
namespace Blarg.GameFramework
|
||
|
{
|
||
|
public interface IService
|
||
|
{
|
||
|
void OnRegister();
|
||
|
void OnUnregister();
|
||
|
}
|
||
|
}
|
||
|
|