This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef SPRITERENDERER_H | |
#define SPRITERENDERER_H | |
#include "objects/sprite.h" | |
class SpriteRenderer | |
{ | |
public: | |
SpriteRenderer() {} | |
SpriteRenderer(Sprite* spr); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef LOCATIONEDITORWIDGET_H | |
#define LOCATIONEDITORWIDGET_H | |
#include "objects/object.h" | |
#include <QWidget> | |
#include <QListWidget> | |
#include <QSpinBox> | |
class LocationEditorWidget : public QWidget |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef OBJECT_H | |
#define OBJECT_H | |
#include <QRect> | |
#include <QPainter> | |
class Object | |
{ | |
public: | |
Object(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef PATHNODE_H | |
#define PATHNODE_H | |
#include <objects/object.h> | |
class PathNode : public Object | |
{ | |
public: | |
PathNode() {} | |
PathNode(FileBase* file, Path* path); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef PATH_H | |
#define PATH_H | |
#include <objects/object.h> | |
class Path : public Object | |
{ | |
public: | |
Path() {} |
NewerOlder