openthebox/src/OpenTheBox/Core/Enums/FontStyle.cs
Samuel Bouchet 04894a4906 Initial project setup: Open The Box CLI game
- .NET 10 console app with Spectre.Console and Loreline integration
- Black Box Sim architecture (simulation separated from presentation)
- Progressive CLI rendering (9 phases from basic to full layout)
- 25+ box definitions with weighted loot tables
- 100+ item definitions (meta, cosmetics, materials, adventure tokens)
- 9 Loreline adventures (Space, Medieval, Pirate, etc.)
- Bilingual content (EN/FR)
- Save/load system
- Game Design Document
2026-03-10 18:24:01 +01:00

27 lines
787 B
C#

namespace OpenTheBox.Core.Enums;
/// <summary>
/// Unlockable font styles for the CLI interface.
/// Found in Boite Meta. The default console font is always available;
/// additional fonts are unlocked as drops.
/// </summary>
public enum FontStyle
{
/// <summary>The default system console font. Always available.</summary>
Default,
/// <summary>Consolas monospaced font. Clean and technical.</summary>
Consolas,
/// <summary>Firetruc display font. Bold and playful.</summary>
Firetruc,
/// <summary>JetBrains Mono font. Developer-focused with ligatures.</summary>
Jetbrains,
/// <summary>Vercel One font. Modern and sleek.</summary>
VercelOne,
/// <summary>Toto Posted One font. Artistic and distinctive.</summary>
TotoPostedOne
}