blob: 30a7f935288b65b5474071283bbcab38110ac93e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#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
|