KCP 库更名为大写
This commit is contained in:
parent
9dd71923d8
commit
bbae671aec
@ -40,7 +40,7 @@ public class RSHWNetwork : ModuleRules
|
||||
"SlateCore",
|
||||
"Networking",
|
||||
"Sockets",
|
||||
"kcp",
|
||||
"KCP",
|
||||
// ... add private dependencies that you statically link with here ...
|
||||
}
|
||||
);
|
||||
|
@ -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;
|
||||
|
@ -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>
|
@ -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)
|
Reference in New Issue
Block a user