using System; using AtomicEngine; public class Spinner : CSComponent { float speed = 1.0f; void Update(float timeStep) { Node.Yaw(speed * timeStep * 75.0f); } }