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

📄 test.cpp

📁 這是一個利用 Lua Wrapper - LuaPus 的實作範例
💻 CPP
字号:
// test.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"

#include <iostream>
#include <string>
using namespace std;

#include "LuaPlus.h"
using namespace LuaPlus;

int add(int a, int b)
{
	return (a + b);
}

void TravelTable(LuaObject& obj)
{
	for(LuaPlus::LuaTableIterator it(obj); it; it.Next())
	{
		// 浪琩 Key 

⌨️ 快捷键说明

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