summaryrefslogtreecommitdiff
path: root/bowshock/source/application/Application/destructor.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bowshock/source/application/Application/destructor.cxx')
-rw-r--r--bowshock/source/application/Application/destructor.cxx17
1 files changed, 0 insertions, 17 deletions
diff --git a/bowshock/source/application/Application/destructor.cxx b/bowshock/source/application/Application/destructor.cxx
deleted file mode 100644
index daef5c1..0000000
--- a/bowshock/source/application/Application/destructor.cxx
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright 2022-2023 Gabriel Bjørnager Jensen.
-
-#include <bow/application.hxx>
-
-#include <fmt/core.h>
-#include <string>
-
-using namespace ::std::literals::string_literals;
-
-bow::Application::~Application() noexcept {
- ::bow::log("app"s, "quitting"s);
-
- delete this->client;
- delete this->server;
-
- ::fmt::print("\nGoodbye! \u2764\n");
-}