This commit is contained in:
Putoo
2026-06-17 19:22:35 +08:00
parent 5cd6151b96
commit 3b0f1e37ee
40 changed files with 1856 additions and 55 deletions

View File

@@ -26,20 +26,20 @@ public class TowerNeed
public System.String parameter
{ get { return this._parameter; } set { this._parameter = value; } }
private System.Int32 _count;
private long _count;
/// <summary>
///
/// </summary>
public System.Int32 count
public long count
{ get { return this._count; } set { this._count = value; } }
private System.Int32 _retCount;
private long _retCount;
/// <summary>
///
/// </summary>
public System.Int32 retCount
public long retCount
{ get { return this._retCount; } set { this._retCount = value; } }
private System.Int32 _isOp;
@@ -57,4 +57,12 @@ public class TowerNeed
/// </summary>
public System.Int32 isAsk
{ get { return this._isAsk; } set { this._isAsk = value; } }
private long _onCount;
/// <summary>
///
/// </summary>
public long onCount
{ get { return this._onCount; } set { this._onCount = value; } }
}