mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-24 04:36:10 +03:00
18 lines
453 B
Zig
18 lines
453 B
Zig
pub const sfnt = @import("opentype/sfnt.zig");
|
|
|
|
const svg = @import("opentype/svg.zig");
|
|
const os2 = @import("opentype/os2.zig");
|
|
const post = @import("opentype/post.zig");
|
|
const hhea = @import("opentype/hhea.zig");
|
|
const head = @import("opentype/head.zig");
|
|
|
|
pub const SVG = svg.SVG;
|
|
pub const OS2 = os2.OS2;
|
|
pub const Post = post.Post;
|
|
pub const Hhea = hhea.Hhea;
|
|
pub const Head = head.Head;
|
|
|
|
test {
|
|
@import("std").testing.refAllDecls(@This());
|
|
}
|