Made logger and state scope files (going to be metric & logging viewer ui for the app.

This commit is contained in:
Edward R. Gonzalez 2024-12-30 12:23:33 -05:00
parent 8905105d40
commit 4b3665ad98
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,12 @@
package sectr
UI_LoggerScope :: struct
{
}
ui_logger_scope :: proc( captures : rawptr = nil ) -> ( should_raise : b32 = false )
{
profile("Logger Scope")
return
}

View File

@ -0,0 +1,12 @@
package sectr
UI_StateScope :: struct
{
}
ui_state_scope :: proc( captures : rawptr = nil ) -> ( should_raise : b32 = false )
{
profile("State Scope")
return
}