コード例 #1
0
ファイル: Level.cs プロジェクト: harmadillotw/LD47-Bloop
    public void AddPlayerPiece(int col, int row, Piece.MOVEMENT_TYPE moveType)
    {
        PlayerPiece pp = new PlayerPiece(col, row, moveType);

        playerPieces.Add(pp);
    }
コード例 #2
0
 public PlayerPiece(int c, int r, Piece.MOVEMENT_TYPE mt)
 {
     col         = c;
     row         = r;
     movementTye = mt;
 }