Traveller/scripts/map/events/MapGenerationCompleteEvent.cs
Cold-Mint 6c1b7b2e84
Fixed warnings given by RiderIDE.
修复RiderIDE给出的警告。
2024-07-25 20:32:59 +08:00

19 lines
573 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>
// ReSharper disable UnusedAutoPropertyAccessor.Global
public RandomNumberGenerator? RandomNumberGenerator { get; set; }
// ReSharper restore UnusedAutoPropertyAccessor.Global
}