AIsOfCatan.GUIPiece.GUIPiece C# (CSharp) 메소드

GUIPiece() 공개 메소드

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
리턴 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();
        }