2020-05-27 19:07:34 +02:00
|
|
|
#pragma once
|
2020-05-30 15:55:23 +02:00
|
|
|
#include "items.h"
|
2020-05-28 15:17:34 +02:00
|
|
|
#include "collide.h"
|
2020-05-27 19:07:34 +02:00
|
|
|
|
|
|
|
void ClearMovableBlockSplitters(int x, int y, int z, short roomNumber);
|
|
|
|
void InitialisePushableBlock(short itemNum);
|
|
|
|
void PushableBlockControl(short itemNum);
|
|
|
|
void PushableBlockCollision(short itemNum, ITEM_INFO* laraitem, COLL_INFO* coll);
|
2020-10-07 02:55:17 +11:00
|
|
|
bool TestBlockMovable(ITEM_INFO* item, int blockHeight);
|
|
|
|
bool TestBlockPush(ITEM_INFO* item, int blockHeight, unsigned short quadrant);
|
|
|
|
bool TestBlockPull(ITEM_INFO* item, int blocHeight, short quadrant);
|