Server.Items.BaseLight.Burn C# (CSharp) Method

Burn() public method

public Burn ( ) : void
return void
		public virtual void Burn()
		{
			m_BurntOut = true;
			Douse();
		}

Usage Example

コード例 #1
0
ファイル: BaseLight.cs プロジェクト: tflynt91/TrueUO
 protected override void OnTick()
 {
     if (m_Light != null && !m_Light.Deleted)
     {
         m_Light.Burn();
     }
 }
All Usage Examples Of Server.Items.BaseLight::Burn