-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApplicationInitContext.h
More file actions
executable file
·46 lines (41 loc) · 1.21 KB
/
ApplicationInitContext.h
File metadata and controls
executable file
·46 lines (41 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//
// * *
// __ *
// ,db' * *
// ,d8/ * * *
// 888
// `db\ * *
// `o`_ **
// * / )
// * /\__/\ * ( ( *
// ,-.,-.,) (.,-.,-.,-.) ).,-.,-.
// | @| ={ }= | @| / / | @|o |
// _j__j__j_) `-------/ /__j__j__j_
// ________( /___________
// | | @| \ || o|O | @|
// |o | |,'\ , ,'"| | | | hjw
// vV\|/vV|`-'\ ,---\ | \Vv\hjwVv\//v
// _) ) `. \ /
// (__/ ) )
//
// PoolApplicationSettings.h
// Neko Framework
//
// Copyright © 2018 Neko Vision. All rights reserved.
//
#pragma once
#include "Engine/Core/Path.h"
namespace Neko::FileSystem
{
class IFileSystem;
}
namespace Neko::Skylar
{
/** Object used to pass parameters to the application module on init. */
struct ApplicationInitContext
{
const char* RootDirectory = nullptr;
IAllocator* AppAllocator = nullptr;
FileSystem::IFileSystem* FileSystem = nullptr;
};
}