⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 scripttypes.cpp

📁 编译并且测试成功的虚拟机
💻 CPP
字号:
#include "stdafx.h"

#include "ScriptTypes.h"


ProgramInstance::ProgramInstance() {
   sleeping = false;
   dead = false;
   programTemplate = NULL;
   a = 0;
   
   stack = new StackItem[STACK_LIMIT];
   activationStack = new Activation[MAX_RECURSION_DEPTH];
}

ProgramInstance::~ProgramInstance() {
  delete[] stack;
  delete[] activationStack;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -