ILogic.cs 123 B

1234567
  1. namespace Component
  2. {
  3. public interface ILogic
  4. {
  5. void Handle(short opcode, byte[] content);
  6. }
  7. }