diff options
Diffstat (limited to 'src/types/Game.zig')
| -rw-r--r-- | src/types/Game.zig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/types/Game.zig b/src/types/Game.zig new file mode 100644 index 0000000..3738284 --- /dev/null +++ b/src/types/Game.zig | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | const Animation = @import("Animation.zig"); | ||
| 2 | const MessageEntity = @import("MessageEntity.zig"); | ||
| 3 | const PhotoSize = @import("PhotoSize.zig"); | ||
| 4 | |||
| 5 | title: []const u8, | ||
| 6 | description: []const u8, | ||
| 7 | photo: []PhotoSize, | ||
| 8 | text: ?[]const u8 = null, | ||
| 9 | text_entities: ?[]MessageEntity = null, | ||
| 10 | animation: ?Animation = null, | ||