diff options
| author | 2025-08-16 13:41:34 +0300 | |
|---|---|---|
| committer | 2025-08-16 13:41:34 +0300 | |
| commit | 9665b6315e028483f4db906a84e0c618157cc2be (patch) | |
| tree | e15085246a024ed2bc28e27ad2680f6632cbd168 /src/types/UniqueGiftInfo.zig | |
| parent | Move bot configuration to SQL land (diff) | |
| download | ukkobot-9665b6315e028483f4db906a84e0c618157cc2be.tar.gz ukkobot-9665b6315e028483f4db906a84e0c618157cc2be.tar.xz ukkobot-9665b6315e028483f4db906a84e0c618157cc2be.zip | |
Add some new stuff to types
Diffstat (limited to 'src/types/UniqueGiftInfo.zig')
| -rw-r--r-- | src/types/UniqueGiftInfo.zig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/types/UniqueGiftInfo.zig b/src/types/UniqueGiftInfo.zig new file mode 100644 index 0000000..ceb72ac --- /dev/null +++ b/src/types/UniqueGiftInfo.zig | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | const UniqueGift = @import("UniqueGift.zig"); | ||
| 2 | |||
| 3 | gift: UniqueGift, | ||
| 4 | // Currently either upgrade, transfer, or resale. TODO: Make an enum? | ||
| 5 | origin: []const u8, | ||
| 6 | last_resale_star_count: ?u64 = null, | ||
| 7 | owned_gift_id: ?[]const u8, | ||
| 8 | transfer_star_count: ?u64 = null, | ||
| 9 | next_transfer_date: ?u64 = null, | ||