r2mods/ilspy_dump/ror2_csproj/Assets.RoR2.Scripts.Platform/GameIntentReceiver.cs

13 lines
259 B
C#
Raw Normal View History

2024-10-04 07:26:37 +00:00
namespace Assets.RoR2.Scripts.Platform;
public static class GameIntentReceiver
{
public static GameIntentAdapter GameIntentAdapter { get; private set; } = new GameIntentAdapter();
public static void Initialize()
{
GameIntentAdapter.Initialize();
}
}