Esempio n. 1
0
 /// <param name="object">to compare with</param>
 /// <returns>true if both objects have the same id.</returns>
 public virtual bool equals(com.brashmonkey.spriter.objects.SpriterAbstractObject
                            @object)
 {
     if (@object == null)
     {
         return(false);
     }
     return(this.timeline == @object.getTimeline());
 }