KCP 库更名为大写
This commit is contained in:
parent
9dd71923d8
commit
bbae671aec
@ -40,7 +40,7 @@ public class RSHWNetwork : ModuleRules
|
|||||||
"SlateCore",
|
"SlateCore",
|
||||||
"Networking",
|
"Networking",
|
||||||
"Sockets",
|
"Sockets",
|
||||||
"kcp",
|
"KCP",
|
||||||
// ... add private dependencies that you statically link with here ...
|
// ... add private dependencies that you statically link with here ...
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using UnrealBuildTool;
|
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;
|
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
|
||||||
|
|
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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">
|
<TpsData xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<Notification>
|
<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>
|
</Notification>
|
||||||
</TpsData>
|
</TpsData>
|
@ -1,7 +1,7 @@
|
|||||||
#include "CoreMinimal.h"
|
#include "CoreMinimal.h"
|
||||||
#include "Modules/ModuleManager.h"
|
#include "Modules/ModuleManager.h"
|
||||||
|
|
||||||
class KCP_API FkcpModule : public IModuleInterface
|
class KCP_API FKCPModule : public IModuleInterface
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
@ -12,4 +12,4 @@ public:
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
IMPLEMENT_MODULE(FkcpModule, kcp)
|
IMPLEMENT_MODULE(FKCPModule, KCP)
|
Reference in New Issue
Block a user