You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 regels
441 B

  1. #pragma once
  2. #include "JObject_NetSDK.h"
  3. NS_NETSDK_CFG_BEGIN
  4. #define JK_PreviewFunction "PreviewFunction"
  5. class PreviewFunction : public JObject
  6. {
  7. public:
  8. JBoolObj GUISet;
  9. JBoolObj Tour;
  10. public:
  11. PreviewFunction(JObject *pParent = NULL, const char *szName = JK_PreviewFunction):
  12. JObject(pParent,szName),
  13. GUISet(this, "GUISet"),
  14. Tour(this, "Tour"){
  15. };
  16. ~PreviewFunction(void){};
  17. };
  18. NS_NETSDK_CFG_END