LkEngine 0.1.2
 
Loading...
Searching...
No Matches
Globals.h
Go to the documentation of this file.
1
5#pragma once
6
7#include <filesystem>
8
10
11namespace LkEngine {
12
26 {
27 int Argc = 0;
28 char** Argv{};
29
30 std::vector<std::string> Args{};
31 };
32
36 struct Global
37 {
41 static void SetRuntimeArguments(const int Argc, char* Argv[]);
42
43 static const FRuntimeArguments& GetRuntimeArguments();
44 };
45
48}
Core macros used by the entire engine.
Definition Asset.h:11
Definition Globals.h:26
Definition Globals.h:37
static void SetRuntimeArguments(const int Argc, char *Argv[])
Runtime arguments passed to main.
Definition Globals.cpp:31