@ -4,6 +4,7 @@
#include <bakara/core/log.h>
#include <bakara/core/application.h>
#include <bakara/core/base.h>
#include <bakara/core/assert.h>
#include <bakara/core/io_codes.h>
#include <bakara/events/event.h>
#include <bakara/events/key_event.h>
@ -7,9 +7,6 @@
#include <functional>
#include <string>
#include <sstream>
#include <format>
#include <array>
#include <vector>
#include <type_traits>
#include <exception>
#include <cctype>
@ -12,7 +12,7 @@ class Sandbox : public Bk::Application
auto key_event = Bk::KeyPressEvent(Bk::Key::A);
auto mouse_event = Bk::MouseMoveEvent(2.3f, 1.2f);
std::cout << event.to_string() << "\n" << key_event.to_string() << "\n" << mouse_event.get_pos().x << "\n";
BK_CORE_IMP_ASSERT(false, "Big Error")
BK_VA_MSG_ASSERT(5 == 6, "Les lois de la physique ne sont pas {0}", "boulversé.")
}
~Sandbox()