Package ch.fusun.baron.espionage.impl

Source Code of ch.fusun.baron.espionage.impl.AssassinServiceImpl

package ch.fusun.baron.espionage.impl;

import ch.fusun.baron.data.AbstractDataProvider;
import ch.fusun.baron.data.DataUpdate;
import ch.fusun.baron.espionage.api.AssassinService;
import ch.fusun.baron.espionage.api.AssassinUpdate;
import ch.fusun.baron.player.Player;

/**
* Implementation of the {@link AssassinService}
*/
public class AssassinServiceImpl extends AbstractDataProvider implements
    AssassinService {

  /**
   * Kryo
   */
  public AssassinServiceImpl() {
  }

  @Override
  public DataUpdate createFullUpdate() {
    return new AssassinUpdate();
  }

  @Override
  public void attemptAssassination(Player player, int assassins) {
    throw new RuntimeException("attemptAssassination not implemented!"); //$NON-NLS-1$
  }
}
TOP

Related Classes of ch.fusun.baron.espionage.impl.AssassinServiceImpl

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.