mission-demolition/Assets/Scripts/Slingshot.cs

13 lines
237 B
C#
Raw Normal View History

2024-02-19 18:33:43 -06:00
using UnityEngine;
2024-02-19 18:39:28 -06:00
using System.Collections;
2024-02-19 18:33:43 -06:00
public class Slingshot : MonoBehaviour
{
2024-02-19 18:39:28 -06:00
void OnMouseEnter() {
print("Slingshot:OnMouseEnter()");
2024-02-19 18:33:43 -06:00
}
2024-02-19 18:39:28 -06:00
void OnMouseExit() {
print("Slingshot:OnMouseExit()");
2024-02-19 18:33:43 -06:00
}
}