mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
11 lines
122 B
C
11 lines
122 B
C
#pragma once
|
|
|
|
typedef enum Toy_OpcodeType {
|
|
//
|
|
|
|
TOY_OPCODE_PASS,
|
|
TOY_OPCODE_ERROR,
|
|
TOY_OPCODE_EOF,
|
|
} Toy_OpcodeType;
|
|
|