tomato/src/tox_ui_utils.hpp

22 lines
284 B
C++
Raw Normal View History

#pragma once
2024-06-07 10:58:42 +02:00
class ToxClient;
struct ConfigModelI;
class ToxUIUtils {
bool _show_add_friend_window {false};
bool _show_add_group_window {false};
2024-06-07 10:58:42 +02:00
ToxClient& _tc;
ConfigModelI& _conf;
public:
ToxUIUtils(
2024-06-07 10:58:42 +02:00
ToxClient& tc,
ConfigModelI& conf
);
void render(void);
};