Elaztek Developer Hub
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 
15 {
16 public:
17 
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