Files
bullet3/examples/SharedMemory/SharedMemoryCommon.h
2015-05-29 15:38:32 -07:00

18 lines
315 B
C++

#ifndef SHARED_MEMORY_COMMON_H
#define SHARED_MEMORY_COMMON_H
#include "../CommonInterfaces/CommonMultiBodyBase.h"
class SharedMemoryCommon : public CommonMultiBodyBase
{
public:
SharedMemoryCommon(GUIHelperInterface* helper)
:CommonMultiBodyBase(helper)
{
}
virtual bool wantsTermination()=0;
};
#endif//