add ckg
plantilla base para movimiento básico
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
#if GAME_KIT_CONTROLLER_USE_MAKINOM
|
||||
using GamingIsLove.Makinom;
|
||||
using UnityEngine;
|
||||
|
||||
namespace GameKitController.Integrations.Makinom
|
||||
{
|
||||
public class PauseGameHandlerMakinom : MonoBehaviour
|
||||
{
|
||||
public void PauseGame()
|
||||
{
|
||||
Maki.Game.PauseGame(true, true, false);
|
||||
}
|
||||
|
||||
public void ResumeGame()
|
||||
{
|
||||
Maki.Game.PauseGame(false, true, false);
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
Reference in New Issue
Block a user