vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
UpdatablePhysXObject.h
Go to the documentation of this file.
1 #ifndef UpdatablePhysXObject_h
2 #define UpdatablePhysXObject_h
3 
4 #include "BasePhysXObject.h"
5 
6 using namespace vrecko;
7 
8 namespace PhysXPlugin
9 {
11  {
12  protected:
14  public:
15  UpdatablePhysXObject(const char* abName):BasePhysXObject(abName){}
17 
18  // tato metoda a preInitialize musi byt volany ve zdedenych tridach
19  // pretezujte metodu BeforeInitialization a AfterInitialization
20  void postInitialize();
21 
22 
23  virtual void RegisterUpatablePO();
24 
25  virtual void UpdateEnvironmentObject()=0;
26 
27  DECLARE_REQUEST_OUTPUT(RegisterPhysXObject, MessageUpdatablePhysXObjectPtr, MessageBool);
28  };
29 }
30 
31 #endif