D3ltaQ's picture
Upload 2197 files
24b81cb verified
raw
history blame contribute delete
237 Bytes
class FuelStation extends BuildingSuper
{
override bool IsBuilding()
{
return false;
}
override bool IsFuelStation()
{
return true;
}
override float GetLiquidThroughputCoef()
{
return LIQUID_THROUGHPUT_FUELSTATION;
}
}