mirror of https://github.com/axmolengine/axmol.git
Removes DirectorDelegate
This commit is contained in:
parent
db15e11acd
commit
f4a99d0627
|
@ -190,18 +190,6 @@ public:
|
|||
Node* getNotificationNode() const { return _notificationNode; }
|
||||
void setNotificationNode(Node *node);
|
||||
|
||||
/** Director delegate. It shall implement the DirectorDelegate protocol
|
||||
@since v0.99.5
|
||||
* @js NA
|
||||
* @lua NA
|
||||
*/
|
||||
DirectorDelegate* getDelegate() const;
|
||||
/**
|
||||
* @js NA
|
||||
* @lua NA
|
||||
*/
|
||||
void setDelegate(DirectorDelegate* delegate);
|
||||
|
||||
// window size
|
||||
|
||||
/** returns the size of the OpenGL view in points.
|
||||
|
|
|
@ -196,7 +196,7 @@ Console::Console()
|
|||
};
|
||||
|
||||
_maxCommands = sizeof(commands)/sizeof(commands[0]);
|
||||
for (size_t i = 0; i < _maxCommands; ++i)
|
||||
for (int i = 0; i < _maxCommands; ++i)
|
||||
{
|
||||
_commands[i] = commands[i];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue