| 58 | ScriptParamEditorType::Type type() const; |
| 59 | Editor() : type_(ScriptParamEditorType::UNDEFINED) {} |
| 60 | void SetType(ScriptParamEditorType::Type type) { type_ = type; }; |
| 61 | void WriteToRAM(std::vector<char> &data) const; |
| 62 | void ReadFromRAM(const std::vector<char> &data, int &index); |
| 63 | const std::string &GetDetails() const { return details_; } |