fishbait/ServerProject-DONT-IMPORT-INTO-UNITY/Room.cs
2021-03-31 15:35:07 -04:00

18 lines
379 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace LightReflectiveMirror
{
[Serializable]
public class Room
{
public int serverId;
public int hostId;
public string serverName;
public string serverData;
public bool isPublic;
public int maxPlayers;
public List<int> clients;
}
}