diff --git a/include/app/app.h b/include/app/app.h index b24ac43..492cbce 100644 --- a/include/app/app.h +++ b/include/app/app.h @@ -38,4 +38,4 @@ private: inline app::App *app_ = nullptr; -#endif \ No newline at end of file +#endif diff --git a/include/bindings/definitions.h b/include/bindings/definitions.h index 27cac02..21bd17b 100644 --- a/include/bindings/definitions.h +++ b/include/bindings/definitions.h @@ -60,4 +60,4 @@ inline void setup() { } } // namespace definitions -#endif \ No newline at end of file +#endif diff --git a/include/bindings/ruby.h b/include/bindings/ruby.h index 08b91e4..7a5db28 100644 --- a/include/bindings/ruby.h +++ b/include/bindings/ruby.h @@ -124,4 +124,4 @@ DEF_SYM(w) DEF_SYM(h) DEF_SYM(z) -#endif \ No newline at end of file +#endif diff --git a/include/localization/localization.h b/include/localization/localization.h index 9430202..a55669c 100644 --- a/include/localization/localization.h +++ b/include/localization/localization.h @@ -47,4 +47,4 @@ Key key_from_sym(mrb_state *mrb, mrb_sym sym); std::string get_key_name(Key key); } // namespace Localization -#endif \ No newline at end of file +#endif diff --git a/include/window/keybinds.h b/include/window/keybinds.h index 2bd9bc3..346b867 100644 --- a/include/window/keybinds.h +++ b/include/window/keybinds.h @@ -218,4 +218,4 @@ inline Key get_key(std::string &name) { return get_key_from_name(name); } -#endif \ No newline at end of file +#endif diff --git a/src/app/elements.cc b/src/app/elements.cc index 3fddc66..770d8fc 100644 --- a/src/app/elements.cc +++ b/src/app/elements.cc @@ -74,4 +74,4 @@ Vec2 ERect::size() { void ERect::render(uint64_t) { window.draw_rect(Rect::from(position, shape), color, z, rotation, pivot, scale, alpha); } -} // namespace app \ No newline at end of file +} // namespace app diff --git a/src/app/scene.cc b/src/app/scene.cc index baddf39..600d918 100644 --- a/src/app/scene.cc +++ b/src/app/scene.cc @@ -88,4 +88,4 @@ Vec2 Scene::world_to_local(Vec2 p, Element *e) { return p; } -} // namespace app \ No newline at end of file +} // namespace app diff --git a/src/bindings/element_image.cc b/src/bindings/element_image.cc index f2fd742..534c51f 100644 --- a/src/bindings/element_image.cc +++ b/src/bindings/element_image.cc @@ -323,4 +323,4 @@ void register_element_image() { bindings.ElementImage = {ElementImage_class, &ElementImage_type}; } -} // namespace definitions \ No newline at end of file +} // namespace definitions diff --git a/src/bindings/element_rect.cc b/src/bindings/element_rect.cc index ace8c25..7366300 100644 --- a/src/bindings/element_rect.cc +++ b/src/bindings/element_rect.cc @@ -346,4 +346,4 @@ void register_element_rect() { bindings.ElementRect = {ElementRect_class, &ElementRect_type}; } -} // namespace definitions \ No newline at end of file +} // namespace definitions diff --git a/src/bindings/element_text.cc b/src/bindings/element_text.cc index 1e84dc2..3225ed7 100644 --- a/src/bindings/element_text.cc +++ b/src/bindings/element_text.cc @@ -408,4 +408,4 @@ void register_element_text() { bindings.ElementText = {ElementText_class, &ElementText_type}; } -} // namespace definitions \ No newline at end of file +} // namespace definitions diff --git a/src/bindings/font.cc b/src/bindings/font.cc index d0c5c19..266b978 100644 --- a/src/bindings/font.cc +++ b/src/bindings/font.cc @@ -69,4 +69,4 @@ void register_font() { ADD_METHOD(Font, "hash", font_hash, MRB_ARGS_NONE()); bindings.Font = {Font_class, &Font_type}; } -} // namespace definitions \ No newline at end of file +} // namespace definitions diff --git a/src/bindings/image.cc b/src/bindings/image.cc index 78513ab..2c414e6 100644 --- a/src/bindings/image.cc +++ b/src/bindings/image.cc @@ -157,4 +157,4 @@ void register_image() { bindings.Image = {Image_class, &Image_type}; } -} // namespace definitions \ No newline at end of file +} // namespace definitions diff --git a/src/bindings/params.cc b/src/bindings/params.cc index d04d6f0..4afab2b 100644 --- a/src/bindings/params.cc +++ b/src/bindings/params.cc @@ -65,4 +65,4 @@ void register_params() { ADD_METHOD(Params, "[]=", params_set, MRB_ARGS_REQ(2)); bindings.Params = {Params_class, &Params_type}; } -} // namespace definitions \ No newline at end of file +} // namespace definitions diff --git a/src/bindings/vec2.cc b/src/bindings/vec2.cc index 07fd948..712da86 100644 --- a/src/bindings/vec2.cc +++ b/src/bindings/vec2.cc @@ -87,4 +87,4 @@ mrb_value Vec2_wrap(uint64_t id, Vec2 *vec) { return obj; } -} // namespace definitions \ No newline at end of file +} // namespace definitions diff --git a/src/localization/localization.cc b/src/localization/localization.cc index a6bf5ad..6149b10 100644 --- a/src/localization/localization.cc +++ b/src/localization/localization.cc @@ -111,4 +111,4 @@ std::string get_key_name(Key key) { return str; return "Unknown Key"; } -} // namespace Localization \ No newline at end of file +} // namespace Localization diff --git a/src/ruby/query.rb b/src/ruby/query.rb index 46f80b9..7732b52 100644 --- a/src/ruby/query.rb +++ b/src/ruby/query.rb @@ -37,4 +37,4 @@ end def anti(query) query.type = :"not_#{query.type}" query -end \ No newline at end of file +end diff --git a/src/window/window.cc b/src/window/window.cc index 634922e..258385d 100644 --- a/src/window/window.cc +++ b/src/window/window.cc @@ -653,4 +653,4 @@ bool Window::mouse_in_window(const Vec2 real_position, Vec2 &virtu virtual_position = (real_position - offset) / scale; return virtual_position.x >= 0 && virtual_position.x <= virtual_size.x && virtual_position.y >= 0 && virtual_position.y <= virtual_size.y; -} \ No newline at end of file +}