-More strict argument type-checking, will make many bugs visible, fixes #1809

-added NOTIFICATION_INSTANCED
This commit is contained in:
Juan Linietsky
2015-05-04 18:30:57 -03:00
parent 6f8bd89931
commit 2d396fb710
7 changed files with 263 additions and 9 deletions

View File

@ -165,7 +165,8 @@ public:
_FORCE_INLINE_ Type get_type() const { return type; }
static String get_type_name(Variant::Type p_type);
static bool can_convert(Type p_type_from,Type p_type_to);
static bool can_convert(Type p_type_from, Type p_type_to);
static bool can_convert_strict(Type p_type_from, Type p_type_to);