mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-09 03:58:19 +03:00
15 lines
345 B
C
15 lines
345 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include "items.h"
|
||
|
#include <collide.h>
|
||
|
|
||
|
namespace TEN::Entities::Switches
|
||
|
{
|
||
|
extern byte SequenceUsed[6];
|
||
|
extern byte SequenceResults[3][3][3];
|
||
|
extern byte Sequences[3];
|
||
|
extern byte CurrentSequence;
|
||
|
|
||
|
void FullBlockSwitchControl(short itemNumber);
|
||
|
void FullBlockSwitchCollision(short itemNum, ITEM_INFO* l, COLL_INFO* coll);
|
||
|
}
|