CollectPartData.cs 217 B

123456789101112
  1. using System.Collections.Generic;
  2. namespace GFGGame
  3. {
  4. public class CollectPartData
  5. {
  6. public int PartID;
  7. public int LevelID;
  8. public int LevelNum;
  9. public float AddNum;
  10. }
  11. }