Traveller/scripts/map/events/MapGenerationCompleteEvent.cs
Cold-Mint 959dcc3092
Add room injection processor.
加入房间注入处理器。
2024-05-28 22:14:35 +08:00

17 lines
455 B
C#

using Godot;
namespace ColdMint.scripts.map.events;
/// <summary>
/// <para>Event when the map is created</para>
/// <para>地图创建完成的事件</para>
/// </summary>
public class MapGenerationCompleteEvent
{
/// <summary>
/// <para>Random number generator generated from seed</para>
/// <para>根据种子生成的随机数生成器</para>
/// </summary>
public RandomNumberGenerator? RandomNumberGenerator { get; set; }
}