- Timestamp:
- Nov 13, 2005, 11:46:49 AM (19 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/shell/shell_command.cc
r5552 r5555 276 276 * @param className the name of the class to apply this command to 277 277 * @param paramCount the count of parameters this command takes 278 * @return self279 278 */ 280 279 ShellCommandBase::ShellCommandBase(const char* commandName, const char* className, unsigned int paramCount, ...) … … 306 305 /** 307 306 * deconstructs a ShellCommand 308 * @return309 307 */ 310 308 ShellCommandBase::~ShellCommandBase() … … 402 400 * @return true on success, false otherwise. 403 401 */ 404 #include "stdlibincl.h"405 402 bool ShellCommandBase::execute(const char* executionString) 406 403 { -
trunk/src/world_entities/world_entity.cc
r5511 r5555 31 31 SHELL_COMMAND(model, WorldEntity, loadModel) 32 32 ->describe("sets the Model of the WorldEntity") 33 ->defaultValues( 1, "models/ships/reaplow.obj");33 ->defaultValues(2, "models/ships/fighter.obj", 1.0); 34 34 35 35
Note: See TracChangeset
for help on using the changeset viewer.