16 lines
No EOL
322 B
C#
16 lines
No EOL
322 B
C#
namespace WingsEmu.Game.Battle;
|
|
|
|
public static class StaticSkillExecutor
|
|
{
|
|
public static ISkillExecutor Instance { get; private set; }
|
|
|
|
public static void Initialize(ISkillExecutor skillExecutor)
|
|
{
|
|
if (Instance != null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
Instance = skillExecutor;
|
|
}
|
|
} |