server-master/srcs/WingsAPI.Game/Upgrades/Cellons/CellonSystemConfiguration.cs
2026-02-10 18:21:30 +01:00

9 lines
No EOL
238 B
C#

using System.Collections.Generic;
namespace WingsEmu.Game.Cellons;
public class CellonSystemConfiguration
{
public HashSet<CellonPossibilities> Options { get; set; }
public HashSet<CellonChances> ChancesToSuccess { get; set; }
}