changeset 128:365e40e92800

core: update documentation in sprite.h
author David Demelier <markand@malikania.fr>
date Tue, 06 Oct 2020 13:53:19 +0200
parents 6691c9f69028
children 9301c7c84471
files libcore/core/sprite.h
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/libcore/core/sprite.h	Tue Oct 06 13:52:52 2020 +0200
+++ b/libcore/core/sprite.h	Tue Oct 06 13:53:19 2020 +0200
@@ -31,11 +31,11 @@
  * \brief Sprite structure.
  */
 struct sprite {
-	struct texture *texture;        /*!< Texture to access (RO) */
-	unsigned int cellw;             /*!< Width per cell (RW) */
-	unsigned int cellh;             /*!< Height per cell (RW) */
-	unsigned int nrows;             /*!< Number of rows (RW) */
-	unsigned int ncols;             /*!< Number of columns (RW) */
+	struct texture *texture;        /*!< (RW) Texture to access (RO) */
+	unsigned int cellw;             /*!< (RW) Width per cell (RW) */
+	unsigned int cellh;             /*!< (RW) Height per cell (RW) */
+	unsigned int nrows;             /*!< (RW) Number of rows (RW) */
+	unsigned int ncols;             /*!< (RW) Number of columns (RW) */
 };
 
 /**