aha
This commit is contained in:
@ -0,0 +1,17 @@
|
||||
using System;
|
||||
namespace Edgegap
|
||||
{
|
||||
// Brief lobby data, returned by the list function
|
||||
[Serializable]
|
||||
public struct LobbyBrief
|
||||
{
|
||||
public string lobby_id;
|
||||
public string name;
|
||||
public bool is_joinable;
|
||||
public bool is_started;
|
||||
public int player_count;
|
||||
public int capacity;
|
||||
public int available_slots => capacity - player_count;
|
||||
public string[] tags;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user