Changeset 9679 for code/branches/tutorial4/src/orxonox/worldentities
- Timestamp:
- Sep 30, 2013, 9:54:58 AM (11 years ago)
- Location:
- code/branches/tutorial4/src/orxonox/worldentities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/tutorial4/src/orxonox/worldentities/AutonomousDrone.cc
r9678 r9679 43 43 The creator of this object. 44 44 */ 45 AutonomousDrone::AutonomousDrone( BaseObject* creator) : ControllableEntity(creator)45 AutonomousDrone::AutonomousDrone(Context* context) : ControllableEntity(context) 46 46 { 47 47 //TODO: Put your code in here: -
code/branches/tutorial4/src/orxonox/worldentities/AutonomousDrone.h
r9678 r9679 49 49 { 50 50 public: 51 AutonomousDrone( BaseObject* creator);51 AutonomousDrone(Context* context); 52 52 virtual ~AutonomousDrone(); 53 53
Note: See TracChangeset
for help on using the changeset viewer.