Merge pull request #540 from RomanDonw/main

fix includes
This commit is contained in:
MihailRis 2025-07-10 18:49:50 +03:00 committed by GitHub
commit 0669ab6510
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 0 deletions

View File

@ -3,6 +3,7 @@
#include "Screen.hpp"
#include <memory>
#include <cstdint>
class Engine;
class LevelFrontend;

View File

@ -1,5 +1,7 @@
#pragma once
#include <stdexcept>
namespace util {
template<typename T, int capacity>
class stack_vector {