浮漂脚本

This commit is contained in:
2025-11-26 14:28:55 +08:00
parent 293890c649
commit 6b5e43d813
110 changed files with 1659 additions and 12039 deletions

View File

@@ -0,0 +1,22 @@
namespace NBF
{
public class AwardData
{
public uint Id;
public int Amount;
public AwardData(string str)
{
string[] parts = str.Split('|');
Id = uint.Parse(parts[0]);
if (parts.Length > 1)
{
Amount = int.Parse(parts[1]);
}
else
{
Amount = 1;
}
}
}
}