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 lines
483 B

  1. #pragma once
  2. #include "JObject_NetSDK.h"
  3. NS_NETSDK_CFG_BEGIN
  4. #define JK_PowerSocket_Authority "PowerSocket.Authority"
  5. class PowerSocket_Authority : public JObject
  6. {
  7. public:
  8. JIntObj Level;
  9. JIntObj Ability;
  10. public:
  11. PowerSocket_Authority(JObject *pParent = NULL, const char *szName = JK_PowerSocket_Authority):
  12. JObject(pParent,szName),
  13. Level(this, "Level"),
  14. Ability(this, "Ability"){
  15. };
  16. ~PowerSocket_Authority(void){};
  17. };
  18. NS_NETSDK_CFG_BEGIN