We can properly use range based for loops with view and interaction with Lua is significantly improved

This commit is contained in:
2020-05-13 01:17:25 +02:00
parent de5af0a5aa
commit c9f05af6c9
8 changed files with 234 additions and 172 deletions

View File

@@ -7,9 +7,9 @@
#include <utility>
namespace ecs::lua {
struct Wrapper : Component {
struct LuaComponent : Component {
// @todo Figure out a more elegant way
Wrapper() {}
LuaComponent() {}
sol::table table;
};