mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 11:45:09 +00:00
30 lines
545 B
C#
30 lines
545 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
using HeavenStudio.Util;
|
||
|
|
||
|
namespace HeavenStudio.Games.Scripts_DoubleDate
|
||
|
{
|
||
|
public class DoubleDateBoy : MonoBehaviour
|
||
|
{
|
||
|
private DoubleDate game;
|
||
|
|
||
|
void Awake()
|
||
|
{
|
||
|
game = DoubleDate.instance;
|
||
|
}
|
||
|
|
||
|
//Animation events are silly
|
||
|
public void DisableBop()
|
||
|
{
|
||
|
game.ToggleBop(false);
|
||
|
}
|
||
|
|
||
|
public void EnableBop()
|
||
|
{
|
||
|
game.ToggleBop(true);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|