mirror of
https://github.com/koloideal/SortLab.git
synced 2026-06-10 10:25:30 +03:00
18 lines
244 B
C++
18 lines
244 B
C++
#pragma once
|
|
#include <SFML/Graphics.hpp>
|
|
#include "Array.hpp"
|
|
|
|
class App {
|
|
public:
|
|
App();
|
|
void run();
|
|
|
|
private:
|
|
void handleEvents();
|
|
void update(float dt);
|
|
void render();
|
|
|
|
sf::RenderWindow window_;
|
|
Array array_;
|
|
};
|