fix errors

This commit is contained in:
Redo
2022-11-04 13:14:05 -06:00
parent cdbf3ed089
commit 0ac3f3e495
4 changed files with 20 additions and 28 deletions

View File

@@ -1,6 +1,16 @@
local ffi = FFI
ffi.cdef[[
struct Net {
int in_queue;
int num_out_ports_on;
int state;
int update_tick;
struct Gate* gates_update[0];
};
]]
Group = {}
function Group.new()