using UnityEngine;
using System.Collections;

public class FPSInput : MonoBehaviour {
  public float speed = 6.0f;          

  void Update() {
    transform.Translate(0, speed, 0); 
  }
}
