HandlerPlayerMajorEnd.java 533 B

1234567891011121314151617181920212223
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package test;
  7. import org.json.JSONObject;
  8. import rsx.BomberStudentHandler;
  9. /**
  10. *
  11. * @author loquicom
  12. */
  13. public class HandlerPlayerMajorEnd implements BomberStudentHandler{
  14. @Override
  15. public boolean handle(JSONObject json) {
  16. System.out.println("Player Major End Handler : " + json.toString(1));
  17. return true;
  18. }
  19. }