Elaztek Developer Hub
Switch Project...
blam!
Editing Kit
Guerilla
Sapien
Tool
Foundry
Libraries
Keystone
Strings
Forums
Discord
Doxygen
Jenkins
Guides
Gitlab
Blamite Game Engine - Tool (Library)
00368.02.12.23.1347.blamite
A command-line utility that aids in the creation of Blamite Cache (.map) Files.
GUICommand.hpp
Go to the documentation of this file.
1
#pragma once
2
3
#include <Strings/components/logger/logger.h>
4
5
#include "../ToolCommand.hpp"
6
#include "../console.h"
7
8
#ifdef TOOL_LIB_EXPORTS
9
#define TOOL_LIB_API __declspec(dllexport)
10
#else
11
#define TOOL_LIB_API __declspec(dllimport)
12
#endif
13
14
class
TOOL_LIB_API
GUICommand
:
public
ToolCommand
15
{
16
public
:
17
18
GUICommand
()
19
{
20
command =
"gui"
;
21
syntax =
"gui"
;
22
description =
"opens a gui which can be used to perform all other tool functions, may be preferred by users unfamiliar with the command-line or new to blamite content creation"
;
23
}
24
25
int
execute
(std::vector<std::string> args)
26
{
27
BlamStrings::Logger::LogEvent(
"dummy command, this should not execute"
);
28
29
return
0;
30
}
31
};
GUICommand::GUICommand
GUICommand()
Definition:
GUICommand.hpp:18
TOOL_LIB_API
#define TOOL_LIB_API
Definition:
GUICommand.hpp:11
GUICommand::execute
int execute(std::vector< std::string > args)
Definition:
GUICommand.hpp:25
GUICommand
Definition:
GUICommand.hpp:14
ToolCommand
Definition:
ToolCommand.hpp:12
HEKTool
components
console
commands
GUICommand.hpp
Generated on Sun Feb 12 2023 16:17:23 for Blamite Game Engine - Tool (Library) by
1.8.17