AIsOfCatan.GUIPiece.GUIPiece C# (CSharp) Method

GUIPiece() public method

public GUIPiece ( Vector2 position, int player, Token token, int t1, int t2, int t3 ) : System
position Vector2
player int
token Token
t1 int
t2 int
t3 int
return System
        public GUIPiece(Vector2 position, int player, Token token, int t1, int t2, int t3)
            : base(position, GetTex(Token.Settlement))
        {
            Player = player;
            Type = token;
            Tile1 = t1;
            Tile2 = t2;
            Tile3 = t3;

            //throw new NotImplementedException();
        }