Get and Set Rotation on an Object

orxOBJECT *heroObject = orxObject_CreateFromConfig("HeroObject");
 
orxFLOAT rotation = orxObject_GetRotation(heroObject);
rotation += 10;
 
orxObject_SetRotation(heroObject, rotation);