diff options
Diffstat (limited to 'src/stage.h')
-rw-r--r-- | src/stage.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stage.h b/src/stage.h index 05ee3ec..ff43847 100644 --- a/src/stage.h +++ b/src/stage.h @@ -44,6 +44,8 @@ stage_node_t * stage_node_free(stage_t *stage, stage_node_t *node); void stage_node_set_alpha(const stage_t *stage, stage_node_t *node, float alpha); void stage_node_set_aabb(const stage_t *stage, stage_node_t *node, const aabb_t *aabb); void stage_node_get_aabb(const stage_t *stage, stage_node_t *node, aabb_t *res_aabb); +void stage_node_set_position(const stage_t *stage, stage_node_t *node, float x, float y); +void stage_node_get_position(const stage_t *stage, stage_node_t *node, float *res_x, float *res_y); void stage_node_set_active(const stage_t *stage, stage_node_t *node); void stage_node_set_inactive(const stage_t *stage, stage_node_t *node); void stage_node_set_locked(const stage_t *stage, stage_node_t *node); |