torpedo_coder/ideas/bytekind.h

17 lines
153 B
C
Raw Normal View History

2025-01-28 02:56:39 +01:00
#ifndef __BYTEKIND__
#define __BYTEKIND__
enum class BYTEKIND
{
IGNORE,
NIL,
NUMBER,
INPUT,
OUTPUT,
OPCODE,
ENGINE,
HARDWARE,
COMM,
};
#endif