ArkScript
A small, fast, functional and scripting language for video games
Ark.hpp
Go to the documentation of this file.
1/**
2 * @file Ark.hpp
3 * @author Alexandre Plateau ([email protected])
4 * @brief Includes the needed files to start using ArkScript
5 * @date 2020-10-27
6 *
7 * @copyright Copyright (c) 2020-2025
8 *
9 */
10
11#ifndef INCLUDE_ARK_ARK_HPP
12#define INCLUDE_ARK_ARK_HPP
13
14#include <Ark/Exceptions.hpp>
15#include <Ark/Constants.hpp>
16#include <Ark/Utils.hpp>
17#include <Ark/VM/VM.hpp>
19#include <Ark/TypeChecker.hpp>
20
21#endif
Lots of utilities about string, filesystem and more.
Constants used by ArkScript.
ArkScript homemade exceptions.
The ArkScript virtual machine.
In charge of welding everything needed to compile code.