Animatroller.Framework.Effect.Sweeper.RegisterJob C# (CSharp) Method

RegisterJob() public method

public RegisterJob ( EffectAction job ) : Sweeper
job EffectAction
return Sweeper
        public Sweeper RegisterJob(EffectAction.Action job)
        {
            lock (lockJobs)
            {
                jobs.Add(job);
            }

            return this;
        }