ACS: include required C++ headers

This commit is contained in:
James R 2023-02-22 03:17:00 -08:00
parent 3e9b2e45e5
commit 70cd31e04d
4 changed files with 10 additions and 4 deletions

View file

@ -11,6 +11,9 @@
/// \file call-funcs.cpp
/// \brief Action Code Script: CallFunc instructions
#include <algorithm>
#include <cctype>
#include <ACSVM/Code.hpp>
#include <ACSVM/CodeData.hpp>
#include <ACSVM/Environment.hpp>

View file

@ -11,6 +11,9 @@
/// \file environment.cpp
/// \brief Action Code Script: Environment definition
#include <algorithm>
#include <vector>
#include <ACSVM/Code.hpp>
#include <ACSVM/CodeData.hpp>
#include <ACSVM/Environment.hpp>

View file

@ -11,8 +11,10 @@
/// \file interface.cpp
/// \brief Action Code Script: Interface for the rest of SRB2's game logic
#include <cmath>
#include <memory>
#include <cstddef>
#include <istream>
#include <ostream>
#include <vector>
#include <ACSVM/Action.hpp>
#include <ACSVM/Code.hpp>

View file

@ -17,8 +17,6 @@
#ifndef __SRB2_ACS_STREAM_HPP__
#define __SRB2_ACS_STREAM_HPP__
#include <istream>
#include <ostream>
#include <streambuf>
#include <ACSVM/Code.hpp>