mirror of
https://github.com/smyalygames/monopoly.git
synced 2025-05-18 06:14:10 +02:00
10 lines
255 B
C#
10 lines
255 B
C#
namespace Mirror.Cloud.ListServerService
|
|
{
|
|
public abstract class ListServerBaseApi : BaseApi
|
|
{
|
|
protected ListServerBaseApi(ICoroutineRunner runner, IRequestCreator requestCreator) : base(runner, requestCreator)
|
|
{
|
|
}
|
|
}
|
|
}
|