get back to a working state
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
zig-out
|
||||
.zig-cache
|
||||
.vscode
|
||||
Vendored
-16
@@ -1,16 +0,0 @@
|
||||
{
|
||||
// Use IntelliSense to learn about possible attributes.
|
||||
// Hover to view descriptions of existing attributes.
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"type": "lldb",
|
||||
"request": "launch",
|
||||
"name": "Debug",
|
||||
"program": "${workspaceFolder}/<executable file>",
|
||||
"args": [],
|
||||
"cwd": "${workspaceFolder}"
|
||||
}
|
||||
]
|
||||
}
|
||||
+2
-2
@@ -15,7 +15,7 @@ pub fn Init(allocator: std.mem.Allocator) !void {
|
||||
}
|
||||
|
||||
|
||||
pub fn CreateMetaTable(MetaTableName: []const u8){
|
||||
pub fn CreateMetaTable(MetaTableName: []const u8) void {
|
||||
lua.newMetatable(LuaRuntime, MetaTableName);
|
||||
}
|
||||
|
||||
@@ -40,4 +40,4 @@ pub fn DeInit() void {
|
||||
const MetaTable_t = struct {
|
||||
Function: *usize,
|
||||
Name: []const u8
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user