Added WECUI protocol version support. Eventually, this will disable WECUI until the user updates, but not yet.

This commit is contained in:
zml2008
2011-12-27 14:02:02 -08:00
parent 72b2c90c19
commit 8cdfd65218
2 changed files with 9 additions and 1 deletions

View File

@ -20,6 +20,10 @@
package com.sk89q.worldedit.cui;
public interface CUIEvent {
// The required protocol versions for communicating with the CUI
public static final int MIN_PROTOCOL = 0, CURRENT_PROTOCOL = 0;
public String getTypeId();
public String[] getParameters();