1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#pragma once #include "api/Transform.h" #include "types.h" namespace crepe { class AbsoluutPosition { public: static vec2 get_position(const Transform & transform,const vec2 & offset); }; } // namespace crepe