DbgSerzCls.cs 298 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace BansheeEngine
  6. {
  7. [SerializeObject]
  8. public class DbgSerzCls
  9. {
  10. public int someValue2;
  11. public string anotherValue2;
  12. public DbgSerzCls child;
  13. }
  14. }