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

public class SimpleRotation : MonoBehaviour
{
    public float yRotationSpeed;
    public float xRotationSpeed;

    private void Update()
    {
        this.transform.Rotate(new Vector3(xRotationSpeed, yRotationSpeed, 0f));
    }
}
