-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebHostBuilder.h
More file actions
executable file
·44 lines (38 loc) · 1.02 KB
/
WebHostBuilder.h
File metadata and controls
executable file
·44 lines (38 loc) · 1.02 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
//
// * *
// __ *
// ,db' * *
// ,d8/ * * *
// 888
// `db\ * *
// `o`_ **
// * / )
// * /\__/\ * ( ( *
// ,-.,-.,) (.,-.,-.,-.) ).,-.,-.
// | @| ={ }= | @| / / | @|o |
// _j__j__j_) `-------/ /__j__j__j_
// ________( /___________
// | | @| \ || o|O | @|
// |o | |,'\ , ,'"| | | | hjw
// vV\|/vV|`-'\ ,---\ | \Vv\hjwVv\//v
// _) ) `. \ /
// (__/ ) )
//
// WebHostBuilder.h
// Neko SDK
//
// Copyright © 2019 Neko Vision. All rights reserved.
//
#pragma once
namespace Neko
{
struct WebHostBuilder
{
WebHostBuilder AsStandalone()
{
IsStandalone = true;
return *this;
}
bool IsStandalone;
};
}