diff libmlk-core/mlk/core/action.c @ 441:31c1bbc33813

man: document mlk-action
author David Demelier <markand@malikania.fr>
date Mon, 24 Oct 2022 21:29:39 +0200
parents 8f59201dc76b
children 773a082f0b91
line wrap: on
line diff
--- a/libmlk-core/mlk/core/action.c	Tue Oct 18 09:04:02 2022 +0200
+++ b/libmlk-core/mlk/core/action.c	Mon Oct 24 21:29:39 2022 +0200
@@ -21,7 +21,7 @@
 #include "action.h"
 
 void
-action_handle(struct action *act, const union event *ev)
+mlk_action_handle(struct mlk_action *act, const union event *ev)
 {
 	assert(act);
 	assert(ev);
@@ -31,7 +31,7 @@
 }
 
 int
-action_update(struct action *act, unsigned int ticks)
+mlk_action_update(struct mlk_action *act, unsigned int ticks)
 {
 	assert(act);
 
@@ -43,7 +43,7 @@
 }
 
 void
-action_draw(struct action *act)
+mlk_action_draw(struct mlk_action *act)
 {
 	assert(act);
 
@@ -52,7 +52,7 @@
 }
 
 void
-action_end(struct action *act)
+mlk_action_end(struct mlk_action *act)
 {
 	assert(act);
 
@@ -61,7 +61,7 @@
 }
 
 void
-action_finish(struct action *act)
+mlk_action_finish(struct mlk_action *act)
 {
 	assert(act);