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/src/application/widgets/editorwidget.cpp

51 lines
663 B
C++

#include "editorwidget.h"
EditorWidget::EditorWidget(const std::shared_ptr<Editor>& editor) :
_editor(editor)
{}
void EditorWidget::input(const sf::Event& event)
{
}
void EditorWidget::update(const sf::Time& dt)
{
}
void EditorWidget::draw(sf::RenderTarget& target, sf::RenderStates states) const
{
}
void EditorWidget::move(const sf::Vector2f& delta)
{
}
bool EditorWidget::isUnderMouse(int mouse_x, int mouse_y) const
{
}
void EditorWidget::setRect(const sf::FloatRect& rect)
{
}
sf::FloatRect EditorWidget::rect() const
{
}
void EditorWidget::setPosition(const sf::Vector2f& position)
{
}
sf::Vector2f EditorWidget::position() const
{
}