PageRenderTime 3ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/.metadata/.plugins/org.eclipse.core.resources/.history/b1/f0a9803cbca2001e1d98c762f0e1eac2

https://bitbucket.org/fixpoint/connexion
#! | 13 lines | 9 code | 4 blank | 0 comment | 0 complexity | feae4e917c7af9e500d51ab53cca2be3 MD5 | raw file
  1. package info.reflectionsofmind.connexion.platform.control.control;
  2. import info.reflectionsofmind.connexion.platform.game.IAction;
  3. import info.reflectionsofmind.connexion.platform.game.IChange;
  4. public interface IGameControl
  5. {
  6. void disconnect();
  7. void sendMessage(String message);
  8. void doAction(IAction action);
  9. }