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

public class ControlSurface : MonoBehaviour {

	public Seat seat;

	public Vector4 input;
	public Vector3 rotation;
	public float turnSpeed = 4f;
}
