summaryrefslogtreecommitdiff
path: root/Thronefall_v1.0/Decompile/LimitedLifetime.cs
blob: 1d99757a3b5140b22341e606ad8edf593d83ea64 (plain)
1
2
3
4
5
6
7
8
9
10
11
using UnityEngine;

public class LimitedLifetime : MonoBehaviour
{
	public float liftetime = 5f;

	private void Start()
	{
		Object.Destroy(base.gameObject, liftetime);
	}
}