Initial Commit
This commit is contained in:
parent
53eb92e9af
commit
270ab7d11f
15341 changed files with 700234 additions and 0 deletions
|
@ -0,0 +1,28 @@
|
|||
namespace MLAPI.Transports
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents a netEvent when polling
|
||||
/// </summary>
|
||||
public enum NetworkEvent
|
||||
{
|
||||
/// <summary>
|
||||
/// New data is received
|
||||
/// </summary>
|
||||
Data,
|
||||
|
||||
/// <summary>
|
||||
/// A client is connected, or client connected to server
|
||||
/// </summary>
|
||||
Connect,
|
||||
|
||||
/// <summary>
|
||||
/// A client disconnected, or client disconnected from server
|
||||
/// </summary>
|
||||
Disconnect,
|
||||
|
||||
/// <summary>
|
||||
/// No new event
|
||||
/// </summary>
|
||||
Nothing
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue