Init Repo

This commit is contained in:
2026-06-03 09:00:11 +08:00
commit 9be48d8b9e
155 changed files with 14827 additions and 0 deletions
@@ -0,0 +1,23 @@
## ADDED Requirements
### Requirement: Load Inter Font
The system SHALL load the Inter-Regular.ttf font file from the project assets during application initialization.
#### Scenario: Font file exists
- **WHEN** the application starts up and Inter-Regular.ttf is present in the assets
- **THEN** the font SHALL be loaded successfully into ImGui
#### Scenario: Font file missing
- **WHEN** the application starts up and Inter-Regular.ttf is not found
- **THEN** the system SHALL fall back to the default ImGui font and log a warning
### Requirement: Apply Inter Font as Default
The system SHALL set the loaded Inter font as the default font for all ImGui text rendering.
#### Scenario: Font loaded successfully
- **WHEN** the Inter font is loaded successfully
- **THEN** all UI text SHALL render using the Inter font face
#### Scenario: Font loading fails
- **WHEN** the Inter font fails to load
- **THEN** the system SHALL continue with the default ImGui font