skeleton-wars/Assets/FloorCreator/Remove.cs
2016-11-02 12:47:34 +01:00

9 lines
137 B
C#

using UnityEngine;
using System.Collections;
public class Remove : MonoBehaviour {
public void Die(){
Destroy (gameObject);
}
}