#ifndef ENGINE_BRIDGE_H #define ENGINE_BRIDGE_H #include "gamesystem.h" abstract_class IEngineBridge: public IGameSystem { public: virtual void ConnectInterface( const char *psz, void *pInterface ) = 0; }; #define ENGINE_BRIDGE_INTERFACE_VERSION "EngineBridge001" #endif