mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-26 05:37:13 +01:00
23 lines
364 B
C++
23 lines
364 B
C++
|
#ifndef TEXT_EDITOR_FILE_H
|
||
|
#define TEXT_EDITOR_FILE_H
|
||
|
|
||
|
#include "core/string/ustring.h"
|
||
|
|
||
|
#include "core/object/resource.h"
|
||
|
|
||
|
class TextEditorFile : public Resource {
|
||
|
GDCLASS(TextEditorFile, Resource);
|
||
|
|
||
|
public:
|
||
|
String get_file_path();
|
||
|
void set_file_path(const String &file_path);
|
||
|
|
||
|
protected:
|
||
|
static void _bind_methods();
|
||
|
|
||
|
private:
|
||
|
String _file_path;
|
||
|
};
|
||
|
|
||
|
#endif
|