mirror of
https://github.com/u0u0/Quick-Cocos2dx-Community.git
synced 2026-06-20 12:12:16 +08:00
Add new Lua Binding for spSkeletonData. Integrate win32 Player. Add "exact_fit" mode for display
33 lines
671 B
C++
33 lines
671 B
C++
|
|
#ifndef __CC_EXTENSION_CCSTORE_PAYMENT_TRANSACTION_WRAPPER_H_
|
|
#define __CC_EXTENSION_CCSTORE_PAYMENT_TRANSACTION_WRAPPER_H_
|
|
|
|
#include "cocos2dx_extra.h"
|
|
#include "cocos2d.h"
|
|
|
|
NS_CC_EXTRA_BEGIN
|
|
|
|
class StorePaymentTransactionWrapper
|
|
{
|
|
public:
|
|
static StorePaymentTransactionWrapper* createWithTransaction(void* transactionObj);
|
|
~StorePaymentTransactionWrapper(void);
|
|
|
|
void* getTransactionObj(void)
|
|
{
|
|
return m_transactionObj;
|
|
}
|
|
|
|
private:
|
|
StorePaymentTransactionWrapper(void)
|
|
: m_transactionObj(NULL)
|
|
{
|
|
}
|
|
|
|
void* m_transactionObj;
|
|
};
|
|
|
|
NS_CC_EXTRA_END
|
|
|
|
#endif // __CC_EXTENSION_CCSTORE_PAYMENT_TRANSACTION_WRAPPER_H_
|