mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 15:56:13 +03:00
11 lines
229 B
Zig
11 lines
229 B
Zig
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);
|
|
};
|