mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-08 11:38:08 +03:00
14 lines
339 B
C
14 lines
339 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include "room.h"
|
||
|
#include "setup.h"
|
||
|
#include "Renderer11.h"
|
||
|
|
||
|
namespace ten::Control::Volumes
|
||
|
{
|
||
|
extern int CurrentCollidedVolume;
|
||
|
|
||
|
void TestVolumes(short roomNumber, BoundingOrientedBox bbox, TriggerVolumeActivators activatorType);
|
||
|
void TestVolumes(ITEM_INFO* item);
|
||
|
void TestVolumes(short roomNumber, MESH_INFO* mesh);
|
||
|
}
|