diff options
author | Juan Linietsky <reduzio@gmail.com> | 2018-08-10 13:30:00 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-10 13:30:00 -0300 |
commit | 767fb2fa0ba14ee6afb4eeeaad12e5dee944547b (patch) | |
tree | 3987cd371656fd23d039c3f12905bd713e6ee8b8 /modules | |
parent | 275e0d5ee4e80d9d3cd124ffa29a691b9aed3e70 (diff) | |
parent | ea3d997f9d4243c21a9f7a65d0320f31c4d57f54 (diff) |
Merge pull request #20889 from godotengine/revert-18914-master
Revert "added get_creation_time function for gdscript"
Diffstat (limited to 'modules')
-rw-r--r-- | modules/mono/mono_gd/gd_mono_assembly.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/mono/mono_gd/gd_mono_assembly.h b/modules/mono/mono_gd/gd_mono_assembly.h index 187eb10af2..5cf744a5a2 100644 --- a/modules/mono/mono_gd/gd_mono_assembly.h +++ b/modules/mono/mono_gd/gd_mono_assembly.h @@ -77,7 +77,6 @@ class GDMonoAssembly { String name; String path; uint64_t modified_time; - uint64_t creation_time; // NEW FUNCTION HashMap<ClassKey, GDMonoClass *, ClassKey::Hasher> cached_classes; Map<MonoClass *, GDMonoClass *> cached_raw; @@ -117,7 +116,6 @@ public: _FORCE_INLINE_ String get_name() const { return name; } _FORCE_INLINE_ String get_path() const { return path; } _FORCE_INLINE_ uint64_t get_modified_time() const { return modified_time; } - _FORCE_INLINE_ uint64_t get_creation_time() const { return creation_time; } // NEW FUNCTION GDMonoClass *get_class(const StringName &p_namespace, const StringName &p_name); GDMonoClass *get_class(MonoClass *p_mono_class); |