mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 23:04:08 +10:00
26 lines
463 B
C
26 lines
463 B
C
#pragma once
|
|
|
|
//general utilities
|
|
#include "toy_common.h"
|
|
#include "toy_console_colors.h"
|
|
#include "toy_print.h"
|
|
|
|
//basic structures
|
|
#include "toy_bucket.h"
|
|
#include "toy_string.h"
|
|
#include "toy_value.h"
|
|
#include "toy_array.h"
|
|
#include "toy_stack.h"
|
|
#include "toy_table.h"
|
|
|
|
//IR structures and other components
|
|
#include "toy_ast.h"
|
|
#include "toy_routine.h"
|
|
|
|
//pipeline
|
|
#include "toy_lexer.h"
|
|
#include "toy_parser.h"
|
|
#include "toy_bytecode.h"
|
|
#include "toy_vm.h"
|
|
|