diff libcore/core/walksprite.h @ 147:b386d25832c8

doc: use new nomenclature, closes #2497
author David Demelier <markand@malikania.fr>
date Thu, 15 Oct 2020 09:21:04 +0200
parents 789b23e01f52
children
line wrap: on
line diff
--- a/libcore/core/walksprite.h	Wed Oct 14 18:20:58 2020 +0200
+++ b/libcore/core/walksprite.h	Thu Oct 15 09:21:04 2020 +0200
@@ -58,10 +58,10 @@
  * ```
  */
 struct walksprite {
-	struct sprite *sprite;  /*!< (RW) The sprite to use */
-	unsigned int delay;     /*!< (RW) The delay between frames */
-	unsigned int index;     /*!< (RO) Current column index */
-	unsigned int elapsed;   /*!< (RO) Elapsed time since last frame */
+	struct sprite *sprite;  /*!< (+&) The sprite to use */
+	unsigned int delay;     /*!< (+) The delay between frames */
+	unsigned int index;     /*!< (-) Current column index */
+	unsigned int elapsed;   /*!< (-) Elapsed time since last frame */
 };
 
 /**