﻿using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class LookAt : MonoBehaviour
{
	public Transform target = null;

	private void Update()
	{
		if (target != null)
		{
			transform.LookAt(target);
		}
	}
}
