forked from sin365/AxibugEmuOnline
9 lines
203 B
C#
9 lines
203 B
C#
|
namespace AxibugEmuOnline.Client
|
|||
|
{
|
|||
|
public abstract class CommandChanger : IKeyMapperChanger
|
|||
|
{
|
|||
|
public string Name => GetType().Name;
|
|||
|
public abstract object GetConfig();
|
|||
|
}
|
|||
|
}
|