DbgComponent.cs 379 B

12345678910111213141516
  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 DbgSerzObj complex = new DbgSerzObj();
  11. public DbgComponent2 otherComponent;
  12. public SceneObject otherSO;
  13. public int[][][] zeArray;
  14. }
  15. }