13 lines
No EOL
302 B
C#
13 lines
No EOL
302 B
C#
using WingsEmu.Game.Battle;
|
|
|
|
namespace WingsEmu.Game.Buffs;
|
|
|
|
public static class StaticMeditationManager
|
|
{
|
|
public static IMeditationManager Instance { get; private set; }
|
|
|
|
public static void Initialize(IMeditationManager meditationManager)
|
|
{
|
|
Instance = meditationManager;
|
|
}
|
|
} |