Asset: Added the upgraded UE4.26 to UE5.1 project files
This commit is contained in:
parent
5a16829092
commit
abca2aa92c
7952 changed files with 187142 additions and 0 deletions
28
Source/Cardinal/Cardinal.Build.cs
Normal file
28
Source/Cardinal/Cardinal.Build.cs
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
using UnrealBuildTool;
|
||||
|
||||
public class Cardinal : ModuleRules
|
||||
{
|
||||
public Cardinal(ReadOnlyTargetRules Target) : base(Target)
|
||||
{
|
||||
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "AdvancedSessions", "OnlineSubsystem", "OnlineSubsystemUtils", "Networking", "Sockets", "OnlineSubsystemSteam", "OnlineSubsystemNull", "MoviePlayer", "DeveloperSettings" });
|
||||
|
||||
PrivateDependencyModuleNames.AddRange(new string[] { "OnlineSubsystem", "Sockets", "Networking", "OnlineSubsystemSteam", "OnlineSubsystemNull" });
|
||||
|
||||
//For 4.26
|
||||
PrivatePCHHeaderFile = "Cardinal.h";
|
||||
bLegacyPublicIncludePaths = true;
|
||||
|
||||
// Uncomment if you are using Slate UI
|
||||
// PrivateDependencyModuleNames.AddRange(new string[] { "Slate", "SlateCore" });
|
||||
|
||||
// Uncomment if you are using online features
|
||||
//PrivateDependencyModuleNames.Add("OnlineSubsystem");
|
||||
//if ((Target.Platform == UnrealTargetPlatform.Win32) || (Target.Platform == UnrealTargetPlatform.Win64))
|
||||
//{
|
||||
// if (UEBuildConfiguration.bCompileSteamOSS == true)
|
||||
// {
|
||||
// DynamicallyLoadedModuleNames.Add("OnlineSubsystemSteam");
|
||||
// }
|
||||
// }
|
||||
}
|
||||
}
|
||||
5
Source/Cardinal/Cardinal.cpp
Normal file
5
Source/Cardinal/Cardinal.cpp
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
// Fill out your copyright notice in the Description page of Project Settings.
|
||||
|
||||
#include "Cardinal.h"
|
||||
|
||||
IMPLEMENT_PRIMARY_GAME_MODULE( FDefaultGameModuleImpl, Cardinal, "Cardinal" );
|
||||
6
Source/Cardinal/Cardinal.h
Normal file
6
Source/Cardinal/Cardinal.h
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
// Fill out your copyright notice in the Description page of Project Settings.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "Engine.h"
|
||||
|
||||
12
Source/Cardinal/EmptyClass.cpp
Normal file
12
Source/Cardinal/EmptyClass.cpp
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
// Fill out your copyright notice in the Description page of Project Settings.
|
||||
|
||||
#include "EmptyClass.h"
|
||||
#include "Cardinal.h"
|
||||
|
||||
EmptyClass::EmptyClass()
|
||||
{
|
||||
}
|
||||
|
||||
EmptyClass::~EmptyClass()
|
||||
{
|
||||
}
|
||||
13
Source/Cardinal/EmptyClass.h
Normal file
13
Source/Cardinal/EmptyClass.h
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
// Fill out your copyright notice in the Description page of Project Settings.
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
class CARDINAL_API EmptyClass
|
||||
{
|
||||
public:
|
||||
EmptyClass();
|
||||
~EmptyClass();
|
||||
};
|
||||
BIN
Source/Cardinal/Resources/Windows/Cardinal.ico
Normal file
BIN
Source/Cardinal/Resources/Windows/Cardinal.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 152 KiB |
Loading…
Add table
Add a link
Reference in a new issue