ILogic.cs 104 B

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