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

13 lines
179 B
C#
Raw Normal View History

#if GAME_KIT_CONTROLLER_USE_ORK
namespace GameKitController.Integrations.ORKFramework
{
public enum GKC_ORKTransferMode
{
None,
OrkToGkc,
GkcToOrk,
Both,
}
}
#endif