Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 14, 2006, 4:53:53 PM (19 years ago)
Author:
bensch
Message:

passing along scriptmethods

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/script_engine/src/lib/script_engine/script_class.cc

    r8393 r8399  
    2828  assert(scriptMethods != NULL);
    2929  this->setClassID(CL_SCRIPT_CLASS, "ScriptClass");
    30   this->classID = classID;
    3130
    32   this->scriptMethods = scriptMethods;
     31  this->_classID = classID;
     32
     33  this->_scriptMethods = scriptMethods;
    3334}
    3435
     
    3940ScriptClass::~ScriptClass ()
    4041{
    41   delete this->scriptMethods;
     42  delete this->_scriptMethods;
    4243}
Note: See TracChangeset for help on using the changeset viewer.