mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-01 17:28:00 +03:00
26 lines
395 B
C++
26 lines
395 B
C++
#include "framework.h"
|
|
#include "generic_objects.h"
|
|
|
|
/// objects
|
|
#include "generic_bridge.h"
|
|
|
|
/// necessary import
|
|
#include "setup.h"
|
|
|
|
static void StartObject()
|
|
{
|
|
OBJECT_INFO* obj;
|
|
|
|
obj = &Objects[ID_BRIDGE];
|
|
if (obj->loaded)
|
|
{
|
|
obj->initialise = InitialiseBridge;
|
|
obj->floor = BridgeFloor;
|
|
obj->ceiling = BridgeCeiling;
|
|
}
|
|
}
|
|
|
|
void InitialiseGenericObjects()
|
|
{
|
|
StartObject();
|
|
}
|