Skip to content

Commit 2a3a1b2

Browse files
committed
First commit
1 parent b343c71 commit 2a3a1b2

File tree

11 files changed

+11580
-0
lines changed

11 files changed

+11580
-0
lines changed

.gitignore

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Build
2+
Binaries
3+
DerivedDataCache
4+
Intermediate
5+
Saved
6+
.vs
7+
*.VC.db
8+
*.opensdf
9+
*.opendb
10+
*.sdf
11+
*.sln
12+
*.suo
13+
*.xcodeproj
14+
*.xcworkspace
15+
.idea/
16+
17+
EnableUnity.txt
18+
DisableSharedPCH.txt
19+
Shaders/VoxelEngineVersion.ush
20+
.DS_Store

Forge.uplugin

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"FileVersion": 3,
3+
"Version": 1,
4+
"VersionName": "1.0",
5+
"FriendlyName": "Forge",
6+
"Description": "",
7+
"Category": "Other",
8+
"CreatedBy": "",
9+
"CreatedByURL": "",
10+
"DocsURL": "",
11+
"MarketplaceURL": "",
12+
"SupportURL": "",
13+
"CanContainContent": true,
14+
"IsBetaVersion": false,
15+
"IsExperimentalVersion": false,
16+
"Installed": false,
17+
"Modules": [
18+
{
19+
"Name": "Forge",
20+
"Type": "Editor",
21+
"LoadingPhase": "Default"
22+
}
23+
]
24+
}

Source/Forge/Forge.Build.cs

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
// Copyright Voxel Plugin SAS. All Rights Reserved.
2+
3+
using UnrealBuildTool;
4+
5+
public class Forge : ModuleRules
6+
{
7+
public Forge(ReadOnlyTargetRules Target) : base(Target)
8+
{
9+
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
10+
bUseUnity = false;
11+
12+
PublicDependencyModuleNames.AddRange(new string[]
13+
{
14+
"Core",
15+
"CoreUObject",
16+
"Engine",
17+
"Slate",
18+
"SlateCore",
19+
"Json",
20+
"HTTP",
21+
"Projects",
22+
});
23+
}
24+
}

0 commit comments

Comments
 (0)