mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-04 19:54:01 +00:00
13 lines
329 B
C#
13 lines
329 B
C#
namespace MikuSB.GameServer.Server.CallGS.Handlers.House;
|
|
|
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
|
|
public class HouseFuncAttribute(string funcName) : Attribute
|
|
{
|
|
public string FuncName { get; } = funcName;
|
|
}
|
|
|
|
public interface IHouseFuncHandler
|
|
{
|
|
Task Handle(Connection connection, string param);
|
|
}
|