diff libmlk-core/core/inhibit.h @ 253:c4da052c0def

core: goodbye doxygen
author David Demelier <markand@malikania.fr>
date Thu, 03 Dec 2020 09:06:52 +0100
parents 71b3b7036de7
children d01e83210ca2
line wrap: on
line diff
--- a/libmlk-core/core/inhibit.h	Tue Dec 01 21:53:23 2020 +0100
+++ b/libmlk-core/core/inhibit.h	Thu Dec 03 09:06:52 2020 +0100
@@ -19,37 +19,10 @@
 #ifndef MOLKO_CORE_INHIBIT_H
 #define MOLKO_CORE_INHIBIT_H
 
-/**
- * \file inhibit.h
- * \brief Disable specific game behavior.
- */
-
-struct action;
-
-/**
- * \brief Game inhibition.
- *
- * This enum is used to alter the game behavior.
- */
 enum inhibit {
-	/**
-	 * Nothing.
-	 */
 	INHIBIT_NONE,
-
-	/**
-	 * Disable input handling in current state.
-	 */
 	INHIBIT_STATE_INPUT        = (1 << 0),
-
-	/**
-	 * Disable current state updates.
-	 */
 	INHIBIT_STATE_UPDATE       = (1 << 1),
-
-	/**
-	 * Disable current state rendering.
-	 */
 	INHIBIT_STATE_DRAW         = (1 << 2)
 };