Михаил Капелько 6 달 전
부모
커밋
1615180d8d
1개의 변경된 파일5개의 추가작업 그리고 15개의 파일을 삭제
  1. +5
    -15
      v4/main.cpp

+ 5
- 15
v4/main.cpp 파일 보기

@@ -108,22 +108,12 @@ int main() {
ctrl.registerCallback(printOutput);
ctrl.registerFieldCallback("exit", [](memory_Context c) { exit(0); });

/*

auto c = shell_createContext();
c.cCLI = cli_createContext();
c = shell_launch(c);
std::cout << c.output << std::endl;
ctrl.set("didLaunch", true);
ctrl.set("playfieldSize", 2);

while (true) {
std::string line;
getline(std::cin, line);
c.input = line;
c = shell_processInput(c);
if (c.exit) {
break;
}
std::cout << c.output << std::endl;
std::string ln;
getline(std::cin, ln);
ctrl.set("input", ln);
}
*/
}

불러오는 중...
취소
저장