16 lines
325 B
C#
16 lines
325 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace LightReflectiveMirror
|
|
{
|
|
struct Room
|
|
{
|
|
public int hostId;
|
|
public string serverName;
|
|
public string serverData;
|
|
public bool isPublic;
|
|
public int maxPlayers;
|
|
public List<int> clients;
|
|
}
|
|
}
|