2
0

SerializeField.cs 163 B

123456789
  1. using System;
  2. namespace BansheeEngine
  3. {
  4. [AttributeUsage(AttributeTargets.Field)]
  5. public sealed class SerializeField : Attribute
  6. {
  7. }
  8. }