Added initial Slingshot code

This commit is contained in:
Trianta
2024-02-19 18:39:28 -06:00
parent 1fa9a4dd60
commit d882af77bb
2 changed files with 18 additions and 11 deletions
+5 -11
View File
@@ -1,18 +1,12 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System.Collections;
public class Slingshot : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
void OnMouseEnter() {
print("Slingshot:OnMouseEnter()");
}
// Update is called once per frame
void Update()
{
void OnMouseExit() {
print("Slingshot:OnMouseExit()");
}
}