Reverted incorrect merge (missing files)
svn up -r 21247 svn merge -r 21247:21246 . (<= revert incorrect: merge -r 21041:21243) svn up
This commit is contained in:
@@ -42,9 +42,10 @@
|
||||
/* Native functions */
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
SCA_ANDController::SCA_ANDController(SCA_IObject* gameobj)
|
||||
SCA_ANDController::SCA_ANDController(SCA_IObject* gameobj,
|
||||
PyTypeObject* T)
|
||||
:
|
||||
SCA_IController(gameobj)
|
||||
SCA_IController(gameobj,T)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -115,15 +116,19 @@ PyTypeObject SCA_ANDController::Type = {
|
||||
0,
|
||||
0,
|
||||
py_base_repr,
|
||||
0,0,0,0,0,0,0,0,0,
|
||||
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
|
||||
0,0,0,0,0,0,0,
|
||||
Methods,
|
||||
0,
|
||||
0,
|
||||
&SCA_IController::Type,
|
||||
0,0,0,0,0,0,
|
||||
py_base_new
|
||||
py_base_getattro,
|
||||
py_base_setattro,
|
||||
0,0,0,0,0,0,0,0,0,
|
||||
Methods
|
||||
};
|
||||
|
||||
PyParentObject SCA_ANDController::Parents[] = {
|
||||
&SCA_ANDController::Type,
|
||||
&SCA_IController::Type,
|
||||
&SCA_ILogicBrick::Type,
|
||||
&CValue::Type,
|
||||
NULL
|
||||
};
|
||||
|
||||
PyMethodDef SCA_ANDController::Methods[] = {
|
||||
@@ -134,4 +139,12 @@ PyAttributeDef SCA_ANDController::Attributes[] = {
|
||||
{ NULL } //Sentinel
|
||||
};
|
||||
|
||||
PyObject* SCA_ANDController::py_getattro(PyObject *attr) {
|
||||
py_getattro_up(SCA_IController);
|
||||
}
|
||||
|
||||
PyObject* SCA_ANDController::py_getattro_dict() {
|
||||
py_getattro_dict_up(SCA_IController);
|
||||
}
|
||||
|
||||
/* eof */
|
||||
|
||||
Reference in New Issue
Block a user