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

public class RotateObject : MonoBehaviour
{
    public Vector3 amount = Vector3.zero;
    void Update()
    {
        transform.Rotate(amount * Time.deltaTime);
    }
}
