twn_utils.c: make profiling public

This commit is contained in:
veclavtalica
2025-01-25 00:53:44 +03:00
parent 597168c282
commit 34a3de73c6
2 changed files with 4 additions and 4 deletions

View File

@ -84,4 +84,8 @@ TWN_API void log_vec2(Vec2 vector, char const *message);
TWN_API void log_vec3(Vec3 vector, char const *message);
TWN_API void log_rect(Rect rect, char const *message);
TWN_API void profile_start(char profile[const static 1]);
TWN_API void profile_end(char profile[const static 1]);
TWN_API void profile_list_stats(void);
#endif