diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-07-26 17:20:13 +1000 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-07-26 17:20:13 +1000 |
commit | aa1eeebb1c05edc22335cbb48af5d42be20750c0 (patch) | |
tree | cc0ef4dc620cb8621fd1a3762b7205b7a16401dc /src/core/core.h | |
parent | f083cacb259054ce996b70f8b9dc0d9eb0bdbfb8 (diff) |
moving some maths functions to implementation file
Diffstat (limited to 'src/core/core.h')
-rw-r--r-- | src/core/core.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/core.h b/src/core/core.h index 17561f3..54e6ec3 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -26,10 +26,10 @@ struct Renderer; Core* get_global_core(); -/** +/** @brief Throws error if the core cannot be instantiated - @param [in] optional_window - Leave NULL if you want Celeritas to instantiate its own window with GLFW, if you - want to provide the glfw window then pass it in here. + @param [in] optional_window - Leave NULL if you want Celeritas to instantiate its own window with + GLFW, if you want to provide the glfw window then pass it in here. */ void Core_Bringup(GLFWwindow* optional_window); void Core_Shutdown(); |