You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
project-kyoku/application.h

29 lines
504 B
C++

#ifndef APPLICATION_H
#define APPLICATION_H
#include <SFML/Graphics/RenderWindow.hpp>
//#include <SFML/Audio/Music.hpp>
#include <SFML/System/Clock.hpp>
#include <SFML/Graphics/RectangleShape.hpp>
#include <stack>
class Application
{
public:
Application();
void run();
void update();
void draw();
private:
sf::RenderWindow game_window;
sf::Clock music;
//sf::Music music;
sf::RectangleShape pulse_mask;
std::stack<sf::Int64> timeline;
};
#endif // APPLICATION_H