Large diffs are not rendered by default.

@@ -0,0 +1,11 @@
using UnityEngine;
using System.Collections;

public class CharacterBulletSelfRotation : MonoBehaviour {

public float rotationSpeed = 10;

void Update () {
transform.Rotate(Vector3.up, rotationSpeed * Time.deltaTime);
}
}