
什么TM的叫TM的sol2
学习sol2
crlyn
这个作者很懒,什么都没留下…
展开
-
sol 三 C++ in Lua
先定义一个类#include <iostream>struct player {public: int bullets; int speed; player() : player(3, 100) { } player(int ammo) : player(ammo, 100) { } player(int ammo, int hitpoints) : bullets(ammo), hp(hitpoints) { } void boost(.翻译 2021-05-13 13:40:15 · 783 阅读 · 0 评论 -
sol2 二 教程:快速入门
断言 / 先决条件你需要在代码中包含#include<sol/sol.hpp> ,这只是一个头文件,不需要编译,但是你的lua 必须是编译可用的。断言如下:#ifndef EXAMPLES_ASSERT_HPP#define EXAMPLES_ASSERT_HPP# define m_assert(condition, message) \ do { \ if (! (condition)) { \ std::ce...翻译 2021-05-13 01:23:08 · 4496 阅读 · 0 评论 -
sol2 一
sol2 v3.2 ,快速,简单的lua绑定教程:快速入门教程:完整版错误支持编译,二进制大小,编译时间特性功能用户类型容器线程定制特性api参考手册说明水准性能说明配置和安全例外运行时类型信息unicode转换格式构建许可证起源...原创 2021-05-12 18:25:47 · 550 阅读 · 0 评论