fishbait/ServerProject-DONT-IMPORT-INTO-UNITY/Room.cs
2021-01-16 16:51:12 -06:00

16 lines
324 B
C#

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