You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
using System;
|
|
|
|
namespace RogueTank.Upgrades;
|
|
|
|
public sealed class UpgradeOption
|
|
{
|
|
public required UpgradeId Id { get; init; }
|
|
public required string Title { get; init; }
|
|
public required string Desc { get; init; }
|
|
public required Action Apply { get; init; }
|
|
}
|
|
|
|
|