KCP 库更名为大写

This commit is contained in:
_Redstone_c_ 2021-01-02 16:27:30 +08:00
parent 9dd71923d8
commit bbae671aec
7 changed files with 6 additions and 6 deletions

View File

@ -40,7 +40,7 @@ public class RSHWNetwork : ModuleRules
"SlateCore",
"Networking",
"Sockets",
"kcp",
"KCP",
// ... add private dependencies that you statically link with here ...
}
);

View File

@ -1,9 +1,9 @@
using System.IO;
using UnrealBuildTool;
public class kcp : ModuleRules
public class KCP : ModuleRules
{
public kcp(ReadOnlyTargetRules Target) : base(Target)
public KCP(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<TpsData xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Notification>
kcp source files re-packaged to be included in Unreal Engine. Original Omar Cornut's repository can be found at https://github.com/skywind3000/kcp/.
KCP source files re-packaged to be included in Unreal Engine. Original Omar Cornut's repository can be found at https://github.com/skywind3000/kcp/.
</Notification>
</TpsData>

View File

@ -1,7 +1,7 @@
#include "CoreMinimal.h"
#include "Modules/ModuleManager.h"
class KCP_API FkcpModule : public IModuleInterface
class KCP_API FKCPModule : public IModuleInterface
{
public:
@ -12,4 +12,4 @@ public:
};
IMPLEMENT_MODULE(FkcpModule, kcp)
IMPLEMENT_MODULE(FKCPModule, KCP)