_xiaofang/xiaofang/Assets/Script/watergun.cs
2024-12-27 17:43:27 +08:00

21 lines
387 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class watergun : MonoBehaviour
{
public XFS Xfs;
public GameObject water;
// Start is called before the first frame update
void Start()
{
Xfs=this.transform.parent.GetComponent<XFS>();
}
// Update is called once per frame
void Update()
{
}
}