Tests.TestNetEncoding.CreateEvent C# (CSharp) Method

CreateEvent() private static method

private static CreateEvent ( NetEventType type, NetPeer peer ) : NetEvent
type NetEventType
peer MiniUDP.NetPeer
return NetEvent
        private static NetEvent CreateEvent(NetEventType type, NetPeer peer)
        {
            NetEvent evnt = new NetEvent();
              evnt.Initialize(type, peer);
              return evnt;
        }