some experimentation

This commit is contained in:
Hartmut Seichter 2019-01-14 09:42:28 +01:00
parent 9773103a18
commit 665a9a4078
8 changed files with 135 additions and 79 deletions

View file

@ -4,6 +4,9 @@
#include "pw/system/input.hpp"
#include "pw/system/display.hpp"
// hijacking
#include "pw/visual/pipeline.hpp"
namespace pw {
void script_system::load(sol::table &ns)
@ -29,6 +32,10 @@ void script_system::load(sol::table &ns)
"all",&display::all,
"name",sol::readonly_property(&display::name)
);
ns.new_usertype<pipeline>("pipeline",
"create",&pipeline::create
);
}
}

View file