mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-25 13:17:22 +01:00
16 lines
498 B
C++
16 lines
498 B
C++
#include "text_editor_file.h"
|
|
|
|
String TextEditorFile::get_file_path() {
|
|
return _file_path;
|
|
}
|
|
|
|
void TextEditorFile::set_file_path(const String &file_path) {
|
|
_file_path = file_path;
|
|
}
|
|
|
|
void TextEditorFile::_bind_methods() {
|
|
ClassDB::bind_method(D_METHOD("get_file_path"), &TextEditorFile::get_file_path);
|
|
ClassDB::bind_method(D_METHOD("set_file_path", "file_path"), &TextEditorFile::set_file_path);
|
|
//ADD_PROPERTY(PropertyInfo(Variant::STRING, "file_path"), "set_file_path", "get_file_path");
|
|
}
|