mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-09 12:08:17 +03:00

- No more enums.h, constants.h, macro.h, etc... - moved all structure in types.h to there respective file.
11 lines
No EOL
491 B
C
11 lines
No EOL
491 B
C
#pragma once
|
|
#include "items.h"
|
|
#include "collide.h"
|
|
|
|
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);
|
|
int TestBlockMovable(ITEM_INFO* item, int blockhite);
|
|
int TestBlockPush(ITEM_INFO* item, int blockhite, unsigned short quadrant);
|
|
int TestBlockPull(ITEM_INFO* item, int blockhite, short quadrant); |