mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-09-24 09:12:51 -04:00
Added serverGame library
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
// ======================================================================
|
||||
//
|
||||
// ConsoleCommandParserNpc.h
|
||||
// copyright (c) 2001 Sony Online Entertainment
|
||||
//
|
||||
// ======================================================================
|
||||
|
||||
#ifndef INCLUDED_ConsoleCommandParserNpc_H
|
||||
#define INCLUDED_ConsoleCommandParserNpc_H
|
||||
|
||||
#include "sharedCommandParser/CommandParser.h"
|
||||
|
||||
// ======================================================================
|
||||
|
||||
/**
|
||||
* Commands that are related to scripts
|
||||
*/
|
||||
|
||||
class ConsoleCommandParserNpc : public CommandParser
|
||||
{
|
||||
public:
|
||||
ConsoleCommandParserNpc ();
|
||||
virtual bool performParsing (const NetworkId & userId,
|
||||
const StringVector_t & argv,
|
||||
const String_t & originalCommand,
|
||||
String_t & result,
|
||||
const CommandParser * node);
|
||||
|
||||
private:
|
||||
ConsoleCommandParserNpc (const ConsoleCommandParserNpc & rhs);
|
||||
ConsoleCommandParserNpc & operator= (const ConsoleCommandParserNpc & rhs);
|
||||
};
|
||||
|
||||
// ======================================================================
|
||||
|
||||
#endif // INCLUDED_ConsoleCommandParserNpc_H
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user