Adding IteamAmount and some extra tokens to ConfBase

This commit is contained in:
Pavel Shevaev 2023-07-18 15:25:44 +03:00
parent 37ac007836
commit 2059b7a4b2
1 changed files with 8 additions and 1 deletions

View File

@ -1,7 +1,14 @@
struct ConfBase struct ConfBase
@bhl_bind @autogen @bhl_bind
#NOTE: id is a CRC value #NOTE: id is a CRC value
id : uint32 @default:0 id : uint32 @default:0
strid : string @default:"" strid : string @default:""
end end
struct ItemAmount
@cloneable @autogen @bhl_bind
proto_id : uint32 @flt_str2num @default:0 @cs_propget_interface:IReadOnlyItemAmount
amount : int64 @default:1 @obscured @cs_propget_interface:IReadOnlyItemAmount
end