mirror of
https://github.com/barkeser2002/flower.git
synced 2026-09-25 19:36:20 +03:00
12 lines
405 B
C++
12 lines
405 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);
|
|
bool isProfileWindowVisible(MyProfileWindow* window);
|
|
|
|
void destroyProfileWindow(MyProfileWindow* window);
|
|
|
|
#endif //GWEN_PROFILE_WINDOW_H
|