| 253 | }; |
| 254 | |
| 255 | struct ScriptTemplate { |
| 256 | String inherit = "Object"; |
| 257 | String name; |
| 258 | String description; |
| 259 | String content; |
| 260 | int id = 0; |
| 261 | TemplateLocation origin = TemplateLocation::TEMPLATE_BUILT_IN; |
| 262 | |
| 263 | String get_hash() const { |
| 264 | return itos(origin) + inherit + name; |
| 265 | } |
| 266 | }; |
| 267 | |
| 268 | /// @name EDITOR FUNCTIONS |
| 269 | /// @{ |
no outgoing calls
no test coverage detected