﻿using UnityEngine;
using System.Collections;

public class FireDeath : MonoBehaviour {

	public GameObject respawn;

	void OnTriggerEnter(Collider other) {
		other.transform.position = respawn.transform.position;
	}
}
