mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-15 06:00:12 +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
|
|
|
|
|