.. _program_listing_file_PrismEngine_src_transformComponent.h: Program Listing for File transformComponent.h ============================================= |exhale_lsh| :ref:`Return to documentation for file ` (``PrismEngine/src/transformComponent.h``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #pragma once namespace prism { namespace scene { struct Position { float x=0, y=0, z=0; }; struct Rotation { float x=0, y=0, z=0; }; struct Scale { float x=1, y=1, z=1; }; struct TransformComponent { Position pos; Rotation rot; Scale scale; }; } }