Modified precompiled headers an project to test new features

dev
anulax1225 ago%!(EXTRA string=1 year)
parent 8613ae8b81
commit 83daf2f7ea
  1. 1
      bakara/src/bakara.h
  2. 3
      bakara/src/bkpch.h
  3. 2
      sandbox/src/sandbox.cpp

@ -4,6 +4,7 @@
#include <bakara/core/log.h> #include <bakara/core/log.h>
#include <bakara/core/application.h> #include <bakara/core/application.h>
#include <bakara/core/base.h> #include <bakara/core/base.h>
#include <bakara/core/assert.h>
#include <bakara/core/io_codes.h> #include <bakara/core/io_codes.h>
#include <bakara/events/event.h> #include <bakara/events/event.h>
#include <bakara/events/key_event.h> #include <bakara/events/key_event.h>

@ -7,9 +7,6 @@
#include <functional> #include <functional>
#include <string> #include <string>
#include <sstream> #include <sstream>
#include <format>
#include <array> #include <array>
#include <vector> #include <vector>
#include <type_traits>
#include <exception> #include <exception>
#include <cctype>

@ -12,7 +12,7 @@ class Sandbox : public Bk::Application
auto key_event = Bk::KeyPressEvent(Bk::Key::A); auto key_event = Bk::KeyPressEvent(Bk::Key::A);
auto mouse_event = Bk::MouseMoveEvent(2.3f, 1.2f); 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"; 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() ~Sandbox()

Loading…
Cancel
Save