blob: 40ff621e455c0e0c2b1260c97990f1cef9d31a71 (
plain) (
tree)
|
|
#pragma once
#include "BlockHandler.h"
class cBlockFluidHandler :
public cBlockHandler
{
public:
cBlockFluidHandler(BLOCKTYPE a_BlockType)
: cBlockHandler(a_BlockType)
{
}
virtual bool DoesIgnoreBuildCollision(void) override
{
return true;
}
// TODO: Implement proper fluid physics here
} ;
|