Alter Loader to allow configuration from Properties object. Server can now be obtained from Loader.

This commit is contained in:
2015-03-21 21:09:34 +00:00
parent 54cc7dc65f
commit 5dc25b8858
9 changed files with 137 additions and 75 deletions

View File

@@ -1,9 +1,12 @@
package com.github.boukefalos.ibuddy;
import org.jraf.jlibibuddy.IBuddyException;
import com.github.boukefalos.ibuddy.exception.iBuddyException;
public interface iBuddy {
public void sendHeadRed(boolean headRed) throws iBuddyException;
public void sendHeadGreen(boolean headGreen) throws iBuddyException;
public void sendHeadBlue(boolean headBlue) throws iBuddyException;
public void setHeadRed(boolean headRed) throws iBuddyException;
public void setHeadGreen(boolean headGreen) throws iBuddyException;
public void setHeadBlue(boolean headBlue) throws iBuddyException;
public void test() throws IBuddyException;
}