Package org.gbcpainter.game.model

Examples of org.gbcpainter.game.model.PlayerImpl


  @NotNull
  @Override
  public Player createPlayer( @NotNull final Point position ) throws IllegalArgumentException {
    try {
      return new PlayerImpl( position );
    } catch ( Exception e ) {
      throw new IllegalArgumentException( "Error while defining the plater" );
    }
  }
View Full Code Here

TOP

Related Classes of org.gbcpainter.game.model.PlayerImpl

Copyright © 2018 www.massapicom. 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.