mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-04-26 11:28:38 +03:00
9 lines
259 B
Zig
9 lines
259 B
Zig
pub const c = @import("animation/c.zig").c;
|
|
|
|
/// https://developer.apple.com/documentation/quartzcore/calayer/contents_gravity_values?language=objc
|
|
pub extern "c" const kCAGravityTopLeft: *anyopaque;
|
|
|
|
test {
|
|
@import("std").testing.refAllDecls(@This());
|
|
}
|