IScriptBank.java 426 B

12345678910111213
  1. package me.km.snuviscript;
  2. public interface IScriptBank {
  3. public void setVar(String value, String var, int playerId) throws Exception;
  4. public void deleteVar(String var, int playerId) throws Exception;
  5. public Object getVar(String var, int playerId, Object error) throws Exception;
  6. public default Object getVar(String var, int playerId) throws Exception {
  7. return getVar(var, playerId, null);
  8. }
  9. }