package simulator;

import common.Position;

//
//  @ Project : CengBall
//  @ File Name : Player.java
//  @ Date : 11.11.2013
//  @ Author : Project Contorium
//
//


public class Player {
	
	// Skill Values
	private int speed;
	private int shoot;
	private int pass;
	private int tackle;
	private int dribbling;
	
	private int kitNumber;
	
	private PlayerInfo info;
	
	public void shoot() {
		
	}
	
	public void move() {
		
	}
	
	public void tackle() {
		
	}
	
	public void pass() {
		
	}
	
	public PlayerInfo getPlayerInfo () {
		return this.info;
	}
}