ALE.Promise.Then C# (CSharp) Method

Then() public method

public Then ( Action callback ) : Promise
callback Action
return Promise
        public Promise Then(Action<object> callback)
        {
            ThenCallbacks.Add(callback);
            return this;
        }