1234567891011121314151617181920212223 |
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- package bswfx.handler;
- import org.json.JSONObject;
- import rsx.BomberStudentHandler;
- /**
- *
- * @author loquicom
- */
- public class HandlerMajorEnd implements BomberStudentHandler{
- @Override
- public boolean handle(JSONObject json) {
- System.out.println("Fin major");
- return true;
- }
-
- }
|