D3ltaQ's picture
Upload 2197 files
24b81cb verified
raw
history blame contribute delete
510 Bytes
class Well extends BuildingSuper
{
override bool IsBuilding()
{
return false;
}
override bool IsWell()
{
return GetWaterSourceObjectType() == EWaterSourceObjectType.WELL;
}
override EWaterSourceObjectType GetWaterSourceObjectType()
{
return EWaterSourceObjectType.WELL;
}
override float GetLiquidThroughputCoef()
{
return LIQUID_THROUGHPUT_WELL;
}
override void SetActions()
{
super.SetActions();
AddAction(ActionWashHandsWell);
AddAction(ActionDrinkWellContinuous);
}
}