Revert "added get_creation_time function for gdscript"

This commit is contained in:
Juan Linietsky 2018-08-10 13:29:49 -03:00 committed by GitHub
parent 275e0d5ee4
commit ea3d997f9d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
24 changed files with 0 additions and 133 deletions

View file

@ -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);