19 lines
284 B
C++
19 lines
284 B
C++
/*
|
|
* Copyright 2016 - 2022 Gary Talent (gary@drinkingtea.net). All rights reserved.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <nostalgia/studio/studio.hpp>
|
|
|
|
namespace nostalgia::world {
|
|
|
|
class WorldEditor: public QWidget {
|
|
|
|
public:
|
|
WorldEditor(QString path, const studio::Context *ctx);
|
|
|
|
};
|
|
|
|
}
|