31 lines
No EOL
627 B
C++
Executable file
31 lines
No EOL
627 B
C++
Executable file
#pragma once
|
|
|
|
#include "../../headers/scene.hpp"
|
|
#include "text_only_button.hpp"
|
|
#include "button.hpp"
|
|
#include "text_only_input_field.hpp"
|
|
#include "input_field.hpp"
|
|
#include "framerate_counter.hpp"
|
|
#include "scroll_view.hpp"
|
|
#include "grid_container.hpp"
|
|
#include "../../headers/animation.hpp"
|
|
|
|
namespace asloengine
|
|
{
|
|
|
|
class SceneDefault : public Scene
|
|
{
|
|
|
|
public:
|
|
SceneDefault();
|
|
|
|
sf::Texture button_texture;
|
|
sf::Font button_font;
|
|
Animation *test_animation;
|
|
|
|
void on_load() override;
|
|
void on_update(float delta_time) override;
|
|
|
|
};
|
|
|
|
} |