YCLIMP
Yandex Command Line Interface Music Player
Loading...
Searching...
No Matches
Application.hpp
1#pragma once
2
3#include "MainWindow.hpp"
4
15
16class Application
17{
18public:
19 Application();
20 void Run();
21
22private:
23 void EventLoopIterationStart();
24 void ProcessEvents();
25 void Draw() const;
26 void PreUpdate();
27 void Update();
28
29 void ProcessUserEvents();
30
31private:
32 MainWindow mWindow;
33 bool mbProgramActive;
34};
The MainWindow class.
Definition MainWindow.hpp:19