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.

14 lines
257 B
C++

#pragma once
#include "core/editor.h"
class ClassicEditor : public Editor
{
public:
explicit ClassicEditor();
virtual void input(PlayerInput&& inputdata) = 0;
virtual void update(const sf::Time& dt) = 0;
virtual void draw() const = 0;
};