7 lines
170 B
C#
7 lines
170 B
C#
|
namespace Tiger.Game.Rooms;
|
||
|
|
||
|
public interface IRoomManager
|
||
|
{
|
||
|
IDictionary<int, RoomPrivateCategory> PrivateCategories { get; }
|
||
|
Task LoadPrivateCategoriesAsync();
|
||
|
}
|