| 1 | const std = @import("std"); |
| 2 | const common = @import("./_common.zig"); |
| 3 | |
| 4 | pub usingnamespace common.Main(struct { |
| 5 | pub const source_file = "Scripts"; |
| 6 | |
| 7 | pub const dest_file = "src/scripts.zig"; |
| 8 | |
| 9 | pub const dest_header = |
| 10 | \\const ucd = @import("./lib.zig"); |
| 11 | \\ |
| 12 | \\pub const Scripts = struct { |
| 13 | \\ from: u21, |
| 14 | \\ to: u21, |
| 15 | \\ script: ucd.ScriptLong, |
| 16 | \\}; |
| 17 | \\ |
| 18 | \\pub const data = [_]Scripts{ |
| 19 | \\ |
| 20 | ; |
| 21 | |
| 22 | pub const dest_footer = |
| 23 | \\}; |
| 24 | \\ |
| 25 | ; |
| 26 | |
| 27 | pub usingnamespace common.RangeEnum("script"); |
| 28 | }); |