예제 #1
0
파일: UrhoObject.cs 프로젝트: tlatt/urho
 /// <summary>
 /// Check current instance is type of specified type.
 /// </summary>
 public bool IsInstanceOf(TypeInfo *typeInfo)
 {
     Runtime.ValidateRefCounted(this);
     return(UrhoObject_IsInstanceOf0(handle, typeInfo));
 }
예제 #2
0
파일: UrhoObject.cs 프로젝트: sami1971/urho
 /// <summary>
 /// Check current type is type of specified type.
 /// </summary>
 public static bool IsTypeOf(TypeInfo *typeInfo)
 {
     Runtime.Validate(typeof(UrhoObject));
     return(UrhoObject_IsTypeOf0(typeInfo));
 }
예제 #3
0
파일: UrhoObject.cs 프로젝트: tlatt/urho
 internal static extern bool UrhoObject_IsInstanceOf0(IntPtr handle, TypeInfo *typeInfo);
예제 #4
0
파일: UrhoObject.cs 프로젝트: sami1971/urho
 internal static extern bool UrhoObject_IsTypeOf0(TypeInfo *typeInfo);