DbgSerzObj.cs 439 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace BansheeEngine
  6. {
  7. [SerializableObject]
  8. public struct DbgSerzObj
  9. {
  10. public DbgSerzObj(int someValue, string anotherValue)
  11. {
  12. this.someValue = someValue;
  13. this.anotherValue = anotherValue;
  14. }
  15. public int someValue;
  16. public string anotherValue;
  17. }
  18. }