Files
FueraDeEscala/Assets/Game Kit Controller/Integrations/Makinom_ORK/Scripts/GKC_ORKStat.cs

15 lines
278 B
C#
Raw Normal View History

#if GAME_KIT_CONTROLLER_USE_ORK
using System;
namespace GameKitController.Integrations.ORKFramework
{
[Serializable]
public class GKC_ORKStat
{
public GKC_ORKTransferMode transferMode = GKC_ORKTransferMode.OrkToGkc;
public int gkcStat;
public int orkStat;
}
}
#endif