X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=src%2Finterface.hpp;fp=src%2Finterface.hpp;h=16ee89f46c37313578d4ca41583c82b4672d01af;hb=76b3ec0f6aa0dacf6d4944a2787991f3585299e8;hp=1f4bb9034baf8028a2bb0dd4386ea6165d40d92b;hpb=6e59f3102d6d64355d5a30b708a326327b089aaf;p=blank.git diff --git a/src/interface.hpp b/src/interface.hpp index 1f4bb90..16ee89f 100644 --- a/src/interface.hpp +++ b/src/interface.hpp @@ -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;