CCAudioEngineSample.GameLayer.CreateSfxLabel C# (CSharp) Method

CreateSfxLabel() private method

private CreateSfxLabel ( ) : void
return void
		private void CreateSfxLabel()
		{
			sfxLabel = new CCLabel("Sound", "Arial", 24, CCLabelFormat.SystemFont);
			sfxLabel.PositionX = 500;
			sfxLabel.PositionY = this.ContentSize.Height - 40;

			this.AddChild(sfxLabel);
		}