mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
10 lines
113 B
C
10 lines
113 B
C
#pragma once
|
|
|
|
#include "toy_common.h"
|
|
|
|
typedef enum Toy_AstType {
|
|
TOY_AST_PASS,
|
|
TOY_AST_ERROR,
|
|
} Toy_AstType;
|
|
|