mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 03:59:35 +08:00
15 lines
405 B
C#
15 lines
405 B
C#
namespace Milimoe.FunGame.Core.Interface
|
|
{
|
|
public interface IClient
|
|
{
|
|
public string FunGameIcon { get; }
|
|
public string FunGameBackGround { get; }
|
|
public string FunGameMainMusic { get; }
|
|
public string FunGameMusic1 { get; }
|
|
public string FunGameMusic2 { get; }
|
|
public string FunGameMusic3 { get; }
|
|
|
|
public string RemoteServerIP();
|
|
}
|
|
}
|