1 /**
2 	DuroLava
3 	Represents a single material pixel of non-solidifying lava.
4 
5 	@author Sven2
6 */
7 
8 #include Lava
9 
GetLiquidType()10 public func GetLiquidType() { return "DuroLava"; }
GetParentLiquidType()11 public func GetParentLiquidType() { return Lava; } // Combine with regular lava in menus such as e.g. the pump liquid selection
12 
13 local Name="$Name$";
14 local Description="$Description$";
15