﻿using UnityEngine;

public class SixtyFPS : MonoBehaviour {
	void Start () {
		Application.targetFrameRate = 60;
	}
}
