Files
o3de/Code/Legacy/CrySystem/ConsoleBatchFile.h
T
Esteban Papp 9f0bbf3b74 SPEC-7531 Change Code/CryEngine to Code/Legacy (#1634)
* git mv Code\CryEngine Code\Legacy
* redirecting CMakeLists.txt
* fixing uic warning
* Some more CryEngine mentions
* validation scripts

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
2021-06-29 13:51:24 -07:00

32 lines
624 B
C++

/*
* Copyright (c) Contributors to the Open 3D Engine Project
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
// Description : Executes an ASCII batch file of console commands...
#ifndef CRYINCLUDE_CRYSYSTEM_CONSOLEBATCHFILE_H
#define CRYINCLUDE_CRYSYSTEM_CONSOLEBATCHFILE_H
#pragma once
struct IConsoleCmdArgs;
struct IConsole;
class CConsoleBatchFile
{
public:
static void Init();
static bool ExecuteConfigFile(const char* filename);
private:
static void ExecuteFileCmdFunc(IConsoleCmdArgs* args);
static IConsole* m_pConsole;
};
#endif // CRYINCLUDE_CRYSYSTEM_CONSOLEBATCHFILE_H