- fleshing out event system and window manager

- added tests back in for window management
This commit is contained in:
2025-12-27 07:19:53 -05:00
parent 184bc7fcdf
commit ecf1cfc29c
12 changed files with 116 additions and 52 deletions

View File

@@ -79,7 +79,7 @@ inline std::ostream& operator<<(std::ostream& os, const path& str) {
// Helper for printing types
inline std::ostream& operator<<(std::ostream& os, const type& t) {
return os << t.name();
return os << t.name().cstr();
}
}