Added documentation for some base Block classes

This commit is contained in:
Dylan K. Taylor
2022-09-24 16:54:21 +01:00
parent 3f7d8a3777
commit cb7c136035
5 changed files with 20 additions and 0 deletions

View File

@ -26,6 +26,10 @@ namespace pocketmine\block;
use pocketmine\block\utils\SupportType;
use pocketmine\math\AxisAlignedBB;
/**
* "Flowable" blocks are destroyed if water flows into the same space as the block. These blocks usually don't have any
* collision boxes, and can't provide support for other blocks.
*/
abstract class Flowable extends Transparent{
public function canBeFlowedInto() : bool{