add scrollGameData class
This commit is contained in:
parent
743ed91ab1
commit
9fcb809215
|
|
@ -509,4 +509,24 @@ public sealed class ShopCustomizeBonusData
|
||||||
public int category;
|
public int category;
|
||||||
public int value;
|
public int value;
|
||||||
public ShopCustomizeBonusCategory Category => (ShopCustomizeBonusCategory)category;
|
public ShopCustomizeBonusCategory Category => (ShopCustomizeBonusCategory)category;
|
||||||
|
}
|
||||||
|
|
||||||
|
[Serializable]
|
||||||
|
public sealed class ScrollGamePlaceData
|
||||||
|
{
|
||||||
|
public int id;
|
||||||
|
public int placeId;
|
||||||
|
public int needScore;
|
||||||
|
public int itemId;
|
||||||
|
public int customizeId;
|
||||||
|
}
|
||||||
|
|
||||||
|
[Serializable]
|
||||||
|
public sealed class ScrollGameStageData
|
||||||
|
{
|
||||||
|
public int id;
|
||||||
|
public int placeId;
|
||||||
|
public int needScore;
|
||||||
|
public string beginPrefabName;
|
||||||
|
public string randomPrefabName;
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue