mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-27 21:23:30 -08:00
9 lines
307 B
C#
9 lines
307 B
C#
namespace BombsAwayGame;
|
|
|
|
/// <summary>
|
|
/// Represents a mission that can be flown by a <see cref="MissionSide"/>.
|
|
/// </summary>
|
|
/// <param name="Name">Name of mission.</param>
|
|
/// <param name="Description">Description of mission.</param>
|
|
internal record class Mission(string Name, string Description);
|