CocosStudioExtension.h 573 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #ifndef __COCOSSTUDIOEXTENSION_H__
  2. #define __COCOSSTUDIOEXTENSION_H__
  3. #include "math/CCAffineTransform.h"
  4. NS_CC_BEGIN
  5. struct CC_DLL ResourceData
  6. {
  7. int type;
  8. std::string file;
  9. std::string plist;
  10. ResourceData()
  11. {
  12. type = 0;
  13. file = "";
  14. plist = "";
  15. }
  16. ResourceData(int iType, std::string sFile, std::string sPlist)
  17. {
  18. type = iType;
  19. file = sFile;
  20. plist = sPlist;
  21. }
  22. };
  23. class CC_DLL NodeExtension
  24. {
  25. public:
  26. NodeExtension();
  27. ~NodeExtension();
  28. private:
  29. };
  30. NS_CC_END
  31. #endif