mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-07 08:33:47 +00:00
48 lines
1.4 KiB
C++
48 lines
1.4 KiB
C++
// DR. ROBOTNIK'S RING RACERS
|
|
//-----------------------------------------------------------------------------
|
|
// Copyright (C) 2016 by James Haley, David Hill, et al. (Team Eternity)
|
|
// Copyright (C) 2022 by Sally "TehRealSalt" Cochenour
|
|
// Copyright (C) 2022 by Kart Krew
|
|
//
|
|
// This program is free software distributed under the
|
|
// terms of the GNU General Public License, version 2.
|
|
// See the 'LICENSE' file for more details.
|
|
//-----------------------------------------------------------------------------
|
|
/// \file acsvm.hpp
|
|
/// \brief ACSVM include file
|
|
|
|
#ifndef __SRB2_ACSVM_HPP__
|
|
#define __SRB2_ACSVM_HPP__
|
|
|
|
#include <ACSVM/Action.hpp>
|
|
#include <ACSVM/Array.hpp>
|
|
#include <ACSVM/BinaryIO.hpp>
|
|
#include <ACSVM/CallFunc.hpp>
|
|
#include <ACSVM/Code.hpp>
|
|
#include <ACSVM/CodeData.hpp>
|
|
#include <ACSVM/CodeList.hpp>
|
|
#include <ACSVM/Environment.hpp>
|
|
#include <ACSVM/Error.hpp>
|
|
#include <ACSVM/Function.hpp>
|
|
#include <ACSVM/HashMap.hpp>
|
|
#include <ACSVM/HashMapFixed.hpp>
|
|
#include <ACSVM/ID.hpp>
|
|
#include <ACSVM/Init.hpp>
|
|
#include <ACSVM/Jump.hpp>
|
|
#include <ACSVM/List.hpp>
|
|
#include <ACSVM/Module.hpp>
|
|
#include <ACSVM/PrintBuf.hpp>
|
|
#include <ACSVM/Scope.hpp>
|
|
#include <ACSVM/Script.hpp>
|
|
#include <ACSVM/Serial.hpp>
|
|
#include <ACSVM/Stack.hpp>
|
|
#include <ACSVM/Store.hpp>
|
|
#include <ACSVM/String.hpp>
|
|
#include <ACSVM/Thread.hpp>
|
|
#include <ACSVM/Tracer.hpp>
|
|
#include <ACSVM/Types.hpp>
|
|
#include <ACSVM/Vector.hpp>
|
|
|
|
#include <Util/Floats.hpp>
|
|
|
|
#endif //__SRB2_ACSVM_HPP__
|