15 lines
245 B
C#
15 lines
245 B
C#
|
using Godot;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
|
||
|
namespace Rokojori
|
||
|
{
|
||
|
public enum NetworkSessionConnectionState
|
||
|
{
|
||
|
Not_Connected,
|
||
|
Connecting_As_Server,
|
||
|
Connecting_As_Client,
|
||
|
Connected_As_Server,
|
||
|
Connected_As_Client
|
||
|
}
|
||
|
}
|