]> git.localhorst.tv Git - blank.git/blobdiff - src/hud.hpp
noexcept all the things
[blank.git] / src / hud.hpp
index 4bfd5fb9ae5903a0861287b5791b90b1c7eb9911..984a24dc0c426e6de05437af57a4efd9af9c5ad6 100644 (file)
@@ -20,12 +20,12 @@ public:
        HUD(const HUD &) = delete;
        HUD &operator =(const HUD &) = delete;
 
-       void Viewport(float width, float height);
-       void Viewport(float x, float y, float width, float height);
+       void Viewport(float width, float height) noexcept;
+       void Viewport(float x, float y, float width, float height) noexcept;
 
        void Display(const Block &);
 
-       void Render(DirectionalLighting &);
+       void Render(DirectionalLighting &) noexcept;
 
 private:
        const BlockTypeRegistry &types;