Pascal Serrarens 17741d862a First commit
2022-01-12 10:50:57 +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);
}
}