From c70ffd095a6de5cd5b872796a0d82a8c5afc1511 Mon Sep 17 00:00:00 2001 From: Uko Kokņevičs Date: Sat, 20 Jul 2024 17:22:25 +0300 Subject: Initial commit --- src/types/Game.zig | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/types/Game.zig (limited to 'src/types/Game.zig') 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 @@ +const Animation = @import("Animation.zig"); +const MessageEntity = @import("MessageEntity.zig"); +const PhotoSize = @import("PhotoSize.zig"); + +title: []const u8, +description: []const u8, +photo: []PhotoSize, +text: ?[]const u8 = null, +text_entities: ?[]MessageEntity = null, +animation: ?Animation = null, -- cgit v1.2.3