pkg/objc: more message send stuff

This commit is contained in:
Mitchell Hashimoto
2022-10-25 20:55:41 -07:00
parent f587b222e7
commit aaaae38fa1
5 changed files with 47 additions and 3 deletions

10
pkg/objc/object.zig Normal file
View File

@@ -0,0 +1,10 @@
const std = @import("std");
const c = @import("c.zig");
const objc = @import("main.zig");
const MsgSend = @import("msg_send.zig").MsgSend;
pub const Object = struct {
value: c.id,
pub usingnamespace MsgSend(Object);
};