diff options
Diffstat (limited to 'source/slang/vm.h')
| -rw-r--r-- | source/slang/vm.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/source/slang/vm.h b/source/slang/vm.h new file mode 100644 index 000000000..e67fec43a --- /dev/null +++ b/source/slang/vm.h @@ -0,0 +1,19 @@ +// vm.h +#ifndef SLANG_VM_H_INCLUDED +#define SLANG_VM_H_INCLUDED + +// This file defines a virtual machine for executing +// code that has been converted to Slang bytecode. +// + +#include "../core/basic.h" + +namespace Slang +{ + + + +} + + +#endif |
