mirror of
https://github.com/kwsch/pkNX.git
synced 2026-04-30 01:37:03 -05:00
23 lines
473 B
Plaintext
23 lines
473 B
Plaintext
namespace pkNX.Structures.FlatBuffers.SV;
|
|
attribute "fs_serializer";
|
|
|
|
struct ItemMachineLotteryRateData {
|
|
DefaultRate:uint;
|
|
BonusRate:uint;
|
|
SpecialRate:uint;
|
|
}
|
|
|
|
struct ItemMachineLotteryRateArray {
|
|
Table:[ItemMachineLotteryRateData:3];
|
|
}
|
|
|
|
table ItemMachineLotteryTable {
|
|
Param:ItemMachineLotteryRateArray;
|
|
}
|
|
|
|
table ItemMachineLotteryTableArray (fs_serializer) {
|
|
Table:[ItemMachineLotteryTable] (required);
|
|
}
|
|
|
|
root_type ItemMachineLotteryTableArray;
|