Step 174: icon system

This commit is contained in:
Bill
2026-02-09 21:51:44 -07:00
parent fd4ad94f7d
commit 59b71aad64
6 changed files with 287 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
// Step 174: Icon system integration checks.
#include <cassert>
#include "IconSet.h"
int main() {
ImGui::CreateContext();
ImU32 color = IconSet::fileColor(FileIconType::Python);
ImU32 warn = IconSet::diagnosticColor(DiagnosticIconType::Warning);
assert(color != 0);
assert(warn != 0);
ImGui::DestroyContext();
printf("step174_integration_test: all assertions passed\n");
return 0;
}