19 lines
550 B
C
19 lines
550 B
C
/* Copyright (c) 2013-2023 Jeffrey Pfau
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
#ifndef M_SCRIPT_H
|
|
#define M_SCRIPT_H
|
|
|
|
#include <mgba/script/base.h>
|
|
#include <mgba/script/canvas.h>
|
|
#include <mgba/script/console.h>
|
|
#include <mgba/script/context.h>
|
|
#include <mgba/script/input.h>
|
|
#include <mgba/script/macros.h>
|
|
#include <mgba/script/storage.h>
|
|
#include <mgba/script/types.h>
|
|
|
|
#endif
|