private void addVerticalPlatformTileAt(int x, int y, bool big, bool reverse) { Vector2 tilePosition = calculateMovingPlatformPosition(x, y, big); int tileWidth = calculateMovingPlatformWidth(big); VerticalMovingPlatform platformTile = new VerticalMovingPlatform(world, tilePosition, tileWidth, this.LevelMap.TileWidth, reverse); addDynamicTile(platformTile); }