Aura.Channel.World.SpawnManager.SpawnAll C# (CSharp) Method

SpawnAll() public method

Calls Spawn on all of the manager's spawners.
public SpawnAll ( ) : void
return void
		public void SpawnAll()
		{
			Log.Info("Spawning creatures...");

			foreach (var spawner in _spawners.Values)
				spawner.Spawn();

			Log.Info("  done spawning creatures.");
		}