Skip to content

Commit 6b33e9c

Browse files
committed
up
1 parent 96a9e90 commit 6b33e9c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Plugins/kbengine_ue4_plugins/Source/KBEnginePlugins/Engine/KBEMain.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,22 +64,22 @@ class KBENGINEPLUGINS_API UKBEMain : public UActorComponent
6464

6565

6666
UFUNCTION(BlueprintCallable, Category = "KBEngine")
67-
static FString getClientVersion();
67+
FString getClientVersion();
6868

6969
UFUNCTION(BlueprintCallable, Category = "KBEngine")
70-
static FString getClientScriptVersion();
70+
FString getClientScriptVersion();
7171

7272
UFUNCTION(BlueprintCallable, Category = "KBEngine")
73-
static FString getServerVersion();
73+
FString getServerVersion();
7474

7575
UFUNCTION(BlueprintCallable, Category = "KBEngine")
76-
static FString getServerScriptVersion();
76+
FString getServerScriptVersion();
7777

7878
/*
7979
客户端属于KBE框架中的一个功能组件,这里获取将固定返回client
8080
*/
8181
UFUNCTION(BlueprintCallable, Category = "KBEngine")
82-
static FString getComponentName();
82+
FString getComponentName();
8383

8484
/**
8585
在程序关闭时需要主动调用, 彻底销毁KBEngine

Plugins/kbengine_ue4_plugins/Source/KBEnginePlugins/Engine/KBEngine.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
22
#include "KBEngine.h"
33
#include "KBEngineArgs.h"
44
#include "Entity.h"

0 commit comments

Comments
 (0)