8 lines
254 B
Kotlin
8 lines
254 B
Kotlin
package com.pobnellion.aoe.building
|
|
|
|
import org.bukkit.Location
|
|
|
|
class Blacksmith(location: Location, variant: Int): Building(location, variant) {
|
|
override var populationCapacity: Int = 0
|
|
override fun getSchematicName(variant: Int): String = ""
|
|
} |