Initial commit
This commit is contained in:
commit
62e8c45c91
1
.gitattributes
vendored
Normal file
1
.gitattributes
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
Content/** filter=lfs diff=lfs merge=lfs -text
|
14
.gitignore
vendored
Normal file
14
.gitignore
vendored
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
Binaries
|
||||||
|
DerivedDataCache
|
||||||
|
Intermediate
|
||||||
|
Saved
|
||||||
|
.vscode
|
||||||
|
.vs
|
||||||
|
*.VC.db
|
||||||
|
*.opensdf
|
||||||
|
*.opendb
|
||||||
|
*.sdf
|
||||||
|
*.sln
|
||||||
|
*.suo
|
||||||
|
*.xcodeproj
|
||||||
|
*.xcworkspace
|
0
Config/DefaultEditor.ini
Normal file
0
Config/DefaultEditor.ini
Normal file
17
Config/DefaultEngine.ini
Normal file
17
Config/DefaultEngine.ini
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
|
||||||
|
|
||||||
|
[/Script/EngineSettings.GameMapsSettings]
|
||||||
|
GameDefaultMap=/Engine/Maps/Templates/Template_Default.Template_Default
|
||||||
|
|
||||||
|
|
||||||
|
[/Script/HardwareTargeting.HardwareTargetingSettings]
|
||||||
|
TargetedHardwareClass=Desktop
|
||||||
|
AppliedTargetedHardwareClass=Desktop
|
||||||
|
DefaultGraphicsPerformance=Maximum
|
||||||
|
AppliedDefaultGraphicsPerformance=Maximum
|
||||||
|
|
||||||
|
[/Script/Engine.Engine]
|
||||||
|
+ActiveGameNameRedirects=(OldGameName="TP_Blank",NewGameName="/Script/SeaOfCrooks")
|
||||||
|
+ActiveGameNameRedirects=(OldGameName="/Script/TP_Blank",NewGameName="/Script/SeaOfCrooks")
|
||||||
|
+ActiveClassRedirects=(OldClassName="TP_BlankGameModeBase",NewClassName="SeaOfCrooksGameModeBase")
|
||||||
|
|
3
Config/DefaultGame.ini
Normal file
3
Config/DefaultGame.ini
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
|
||||||
|
[/Script/EngineSettings.GeneralProjectSettings]
|
||||||
|
ProjectID=1EAB33874F284B38F81C03A9EBA84302
|
13
SeaOfCrooks.uproject
Normal file
13
SeaOfCrooks.uproject
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"FileVersion": 3,
|
||||||
|
"EngineAssociation": "4.26",
|
||||||
|
"Category": "",
|
||||||
|
"Description": "",
|
||||||
|
"Modules": [
|
||||||
|
{
|
||||||
|
"Name": "SeaOfCrooks",
|
||||||
|
"Type": "Runtime",
|
||||||
|
"LoadingPhase": "Default"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
14
Source/SeaOfCrooks.Target.cs
Normal file
14
Source/SeaOfCrooks.Target.cs
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||||||
|
|
||||||
|
using UnrealBuildTool;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
public class SeaOfCrooksTarget : TargetRules
|
||||||
|
{
|
||||||
|
public SeaOfCrooksTarget( TargetInfo Target) : base(Target)
|
||||||
|
{
|
||||||
|
Type = TargetType.Game;
|
||||||
|
DefaultBuildSettings = BuildSettingsVersion.V2;
|
||||||
|
ExtraModuleNames.AddRange( new string[] { "SeaOfCrooks" } );
|
||||||
|
}
|
||||||
|
}
|
23
Source/SeaOfCrooks/SeaOfCrooks.Build.cs
Normal file
23
Source/SeaOfCrooks/SeaOfCrooks.Build.cs
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||||||
|
|
||||||
|
using UnrealBuildTool;
|
||||||
|
|
||||||
|
public class SeaOfCrooks : ModuleRules
|
||||||
|
{
|
||||||
|
public SeaOfCrooks(ReadOnlyTargetRules Target) : base(Target)
|
||||||
|
{
|
||||||
|
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
|
||||||
|
|
||||||
|
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore" });
|
||||||
|
|
||||||
|
PrivateDependencyModuleNames.AddRange(new string[] { });
|
||||||
|
|
||||||
|
// Uncomment if you are using Slate UI
|
||||||
|
// PrivateDependencyModuleNames.AddRange(new string[] { "Slate", "SlateCore" });
|
||||||
|
|
||||||
|
// Uncomment if you are using online features
|
||||||
|
// PrivateDependencyModuleNames.Add("OnlineSubsystem");
|
||||||
|
|
||||||
|
// To include OnlineSubsystemSteam, add it to the plugins section in your uproject file with the Enabled attribute set to true
|
||||||
|
}
|
||||||
|
}
|
6
Source/SeaOfCrooks/SeaOfCrooks.cpp
Normal file
6
Source/SeaOfCrooks/SeaOfCrooks.cpp
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||||||
|
|
||||||
|
#include "SeaOfCrooks.h"
|
||||||
|
#include "Modules/ModuleManager.h"
|
||||||
|
|
||||||
|
IMPLEMENT_PRIMARY_GAME_MODULE( FDefaultGameModuleImpl, SeaOfCrooks, "SeaOfCrooks" );
|
6
Source/SeaOfCrooks/SeaOfCrooks.h
Normal file
6
Source/SeaOfCrooks/SeaOfCrooks.h
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "CoreMinimal.h"
|
||||||
|
|
5
Source/SeaOfCrooks/SeaOfCrooksGameModeBase.cpp
Normal file
5
Source/SeaOfCrooks/SeaOfCrooksGameModeBase.cpp
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||||||
|
|
||||||
|
|
||||||
|
#include "SeaOfCrooksGameModeBase.h"
|
||||||
|
|
17
Source/SeaOfCrooks/SeaOfCrooksGameModeBase.h
Normal file
17
Source/SeaOfCrooks/SeaOfCrooksGameModeBase.h
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "CoreMinimal.h"
|
||||||
|
#include "GameFramework/GameModeBase.h"
|
||||||
|
#include "SeaOfCrooksGameModeBase.generated.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
UCLASS()
|
||||||
|
class SEAOFCROOKS_API ASeaOfCrooksGameModeBase : public AGameModeBase
|
||||||
|
{
|
||||||
|
GENERATED_BODY()
|
||||||
|
|
||||||
|
};
|
14
Source/SeaOfCrooksEditor.Target.cs
Normal file
14
Source/SeaOfCrooksEditor.Target.cs
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||||||
|
|
||||||
|
using UnrealBuildTool;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
public class SeaOfCrooksEditorTarget : TargetRules
|
||||||
|
{
|
||||||
|
public SeaOfCrooksEditorTarget( TargetInfo Target) : base(Target)
|
||||||
|
{
|
||||||
|
Type = TargetType.Editor;
|
||||||
|
DefaultBuildSettings = BuildSettingsVersion.V2;
|
||||||
|
ExtraModuleNames.AddRange( new string[] { "SeaOfCrooks" } );
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user