]> git.localhorst.tv Git - blank.git/blobdiff - src/interface.hpp
noexcept all the things
[blank.git] / src / interface.hpp
index 1f4bb9034baf8028a2bb0dd4386ea6165d40d92b..16ee89f46c37313578d4ca41583c82b4672d01af 100644 (file)
@@ -35,14 +35,14 @@ public:
        void Handle(const SDL_MouseMotionEvent &);
        void Handle(const SDL_MouseButtonEvent &);
        void Handle(const SDL_MouseWheelEvent &);
-       void Handle(const SDL_WindowEvent &);
+       void Handle(const SDL_WindowEvent &) noexcept;
 
        void FaceBlock();
        void TurnBlock();
 
        void PickBlock();
        void PlaceBlock();
-       void RemoveBlock();
+       void RemoveBlock() noexcept;
 
        void PrintBlockInfo();
        void PrintChunkInfo();
@@ -55,7 +55,7 @@ public:
 
        void Update(int dt);
 
-       void Render(DirectionalLighting &);
+       void Render(DirectionalLighting &) noexcept;
 
 private:
        World &world;