mirror of https://github.com/axmolengine/axmol.git
28 lines
695 B
C++
28 lines
695 B
C++
/*
|
|
*
|
|
* Helper class to store targets and selectors (and eventually, params?) in the same CCMutableArray. Basically a very crude form of a NSInvocation
|
|
*/
|
|
#ifndef __CCINVOCATION_H__
|
|
#define __CCINVOCATION_H__
|
|
|
|
#include "CCObject.h"
|
|
|
|
NS_CC_BEGIN
|
|
|
|
typedef unsigned int CCControlEvent;
|
|
|
|
class CC_DLL CCInvocation : public CCObject
|
|
{
|
|
CC_SYNTHESIZE_READONLY(SEL_MenuHandler, m_action, Action);
|
|
CC_SYNTHESIZE_READONLY(CCObject*, m_target, Target);
|
|
CC_SYNTHESIZE_READONLY(CCControlEvent, m_controlEvent, ControlEvent);
|
|
|
|
public:
|
|
CCInvocation(CCObject* target, SEL_MenuHandler action, CCControlEvent controlEvent);
|
|
|
|
void invoke(CCObject* sender);
|
|
};
|
|
|
|
NS_CC_END
|
|
|
|
#endif |