fCraft.Scheduler.PrintTasks C# (CSharp) Method

PrintTasks() public static method

public static PrintTasks ( [ player ) : void
player [
return void
        public static void PrintTasks( [NotNull] Player player )
        {
            if( player == null ) throw new ArgumentNullException( "player" );
            lock( TaskListLock ) {
                foreach( SchedulerTask task in Tasks ) {
                    player.Message( task.ToString() );
                }
            }
        }