mirror of
https://github.com/godotengine/godot-visual-script.git
synced 2026-01-05 22:10:23 +03:00
Rename Reference to RefCounted
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<class name="VisualScriptFunctionState" inherits="Reference" version="4.0">
|
||||
<class name="VisualScriptFunctionState" inherits="RefCounted" version="4.0">
|
||||
<brief_description>
|
||||
</brief_description>
|
||||
<description>
|
||||
|
||||
@@ -449,8 +449,8 @@ public:
|
||||
~VisualScriptInstance();
|
||||
};
|
||||
|
||||
class VisualScriptFunctionState : public Reference {
|
||||
GDCLASS(VisualScriptFunctionState, Reference);
|
||||
class VisualScriptFunctionState : public RefCounted {
|
||||
GDCLASS(VisualScriptFunctionState, RefCounted);
|
||||
friend class VisualScriptInstance;
|
||||
|
||||
ObjectID instance_id;
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
#include "core/io/marshalls.h"
|
||||
#include "core/math/math_funcs.h"
|
||||
#include "core/object/class_db.h"
|
||||
#include "core/object/reference.h"
|
||||
#include "core/object/ref_counted.h"
|
||||
#include "core/os/os.h"
|
||||
#include "core/variant/variant_parser.h"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user