Pascal Serrarens de12c36220 First commit
2022-01-11 16:51:37 +01:00

11 lines
204 B
C#

using UnityEngine;
namespace Passer {
public partial class NetworkEvent {
}
public interface INetworkEvent {
void BoolEvent(Object target, string methodName, bool value);
}
}