DbgComponent.cs 868 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace BansheeEngine
  6. {
  7. public class DbgComponent : Component
  8. {
  9. public int a;
  10. public string b;
  11. public DbgSerzObj complex = new DbgSerzObj();
  12. public DbgSerzCls complex2 = new DbgSerzCls();
  13. public int[] arrA;
  14. public string[] arrB;
  15. public DbgSerzObj[] arrComplex;
  16. public DbgSerzCls[] arrComplex2;
  17. public List<int> listA;
  18. public List<string> listB;
  19. public List<DbgSerzObj> listComplex;
  20. public List<DbgSerzCls> listComplex2;
  21. public DbgComponent2 otherComponent;
  22. public SceneObject otherSO;
  23. //public int[][][] zeArray;
  24. //public List<DbgSerzObj> zeList;
  25. //public Dictionary<string, int> zeDict;
  26. }
  27. }