From 7699e9b28f6e3e951777d634688161bf972e3742 Mon Sep 17 00:00:00 2001 From: John Date: Fri, 31 Jan 2014 01:33:46 +0800 Subject: [PATCH] Fixed "CompleteDelete" typo in C# event delegates Supposed to be "CompleteDelegate"? --- spine-csharp/src/AnimationState.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spine-csharp/src/AnimationState.cs b/spine-csharp/src/AnimationState.cs index 713c2de72..6f839fb82 100644 --- a/spine-csharp/src/AnimationState.cs +++ b/spine-csharp/src/AnimationState.cs @@ -47,8 +47,8 @@ namespace Spine { public delegate void EventDelegate(AnimationState state, int trackIndex, Event e); public EventDelegate Event; - public delegate void CompleteDelete(AnimationState state, int trackIndex, int loopCount); - public CompleteDelete Complete; + public delegate void CompleteDelegate(AnimationState state, int trackIndex, int loopCount); + public CompleteDelegate Complete; public AnimationState (AnimationStateData data) { if (data == null) throw new ArgumentNullException("data cannot be null."); @@ -265,7 +265,7 @@ namespace Spine { public AnimationState.StartEndDelegate Start; public AnimationState.StartEndDelegate End; public AnimationState.EventDelegate Event; - public AnimationState.CompleteDelete Complete; + public AnimationState.CompleteDelegate Complete; internal void OnStart (AnimationState state, int index) { if (Start != null) Start(state, index);