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

10 lines
No EOL
236 B
C#

using System.Collections.Generic;
namespace WingsEmu.Game.Cellons;
public class CellonPossibilities
{
public int CellonLevel { get; set; }
public int Price { get; set; }
public HashSet<CellonOption> Options { get; set; }
}