Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 21, 2016, 4:02:06 PM (8 years ago)
Author:
plehmann
Message:

updated some files so NewScriptController lua binds are created. added DebugTask to cmake.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/plehmannFS16/src/orxonox/controllers/DebugTask.cc

    r11167 r11172  
    3939    RegisterClass(DebugTask);
    4040
    41     DebugTask::DebugTask(Context* context) : isRunning_(false)
     41    DebugTask::DebugTask(Context* context): Task(context)
    4242    {
    4343        RegisterObject(DebugTask);
    4444    }
    4545
    46     DebugTask::Tick(float dt)
     46    void DebugTask::tick(float dt)
    4747    {
    48 
     48        SUPER(DebugTask, tick, dt);
    4949        orxout() << "*" << endl;
    5050    }
Note: See TracChangeset for help on using the changeset viewer.