Luz.ULib.Net.NetworkEvent.NetworkEvent C# (CSharp) Method

NetworkEvent() private method

Creates a new network event of a certain type setting connection id to invalid and data to null. Internal only. Do not use.
private NetworkEvent ( NetEventType t ) : System
t NetEventType The type of this event
return System
        internal NetworkEvent(NetEventType t)
        {
            type = t;
            connectionId = ConnectionId.INVALID;
            data = null;
        }

Same methods

NetworkEvent::NetworkEvent ( NetEventType t, ConnectionId conId, object dt ) : System