Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 26, 2006, 5:46:42 PM (18 years ago)
Author:
snellen
Message:

executor should now be able to take up to 7 parameters

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/single_player_map/src/world_entities/npcs/generic_npc.cc

    r8810 r8811  
    3838CREATE_FACTORY(GenericNPC, CL_GENERIC_NPC);
    3939
     40#include "script_class.h"
     41CREATE_SCRIPTABLE_CLASS(GenericNPC, CL_GENERIC_NPC,
     42                        addMethod("walkTo", ExecutorLua7ret<GenericNPC,float, float, float, float, float, float, float, float>(&GenericNPC::walkTo))
     43                       );
     44
    4045
    4146
     
    5257}
    5358
     59
     60GenericNPC::GenericNPC()
     61  : NPC(NULL)
     62{
     63 
     64}
    5465
    5566/**
Note: See TracChangeset for help on using the changeset viewer.