DbgComponent.cs 560 B

12345678910111213141516171819202122
  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 DbgComponent2 otherComponent;
  14. public SceneObject otherSO;
  15. //public int[][][] zeArray;
  16. //public List<DbgSerzObj> zeList;
  17. //public Dictionary<string, int> zeDict;
  18. }
  19. }