mirror of
https://github.com/bulletphysics/bullet3
synced 2025-01-05 15:21:06 +00:00
12 lines
350 B
C++
12 lines
350 B
C++
#ifndef GWEN_PROFILE_WINDOW_H
|
|
#define GWEN_PROFILE_WINDOW_H
|
|
|
|
class MyProfileWindow* setupProfileWindow(struct GwenInternalData* data);
|
|
void processProfileData(MyProfileWindow* window, bool idle);
|
|
void profileWindowSetVisible(MyProfileWindow* window, bool visible);
|
|
void destroyProfileWindow(MyProfileWindow* window);
|
|
|
|
#endif//GWEN_PROFILE_WINDOW_H
|
|
|
|
|