OpcodeAttribute.cs 203 B

1234567891011121314
  1. using System;
  2. namespace Base
  3. {
  4. public class OpcodeAttribute : Attribute
  5. {
  6. public ushort Opcode { get; private set; }
  7. public OpcodeAttribute(ushort opcode)
  8. {
  9. this.Opcode = opcode;
  10. }
  11. }
  12. }