mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-10-05 02:52:20 -04:00
12 lines
157 B
C++
12 lines
157 B
C++
#ifndef INTERPRETER_TYPES_H_INCLUDED
|
|
#define INTERPRETER_TYPES_H_INCLUDED
|
|
|
|
namespace Interpreter
|
|
{
|
|
typedef unsigned int Type_Code; // 32 bit
|
|
|
|
}
|
|
|
|
#endif
|
|
|