Files
BABA_YAGA/Assets/Steve/SoundController.cs

16 lines
220 B
C#
Raw Normal View History

2026-03-27 22:42:43 +07:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class SoundController : MonoBehaviour
{
public AudioSource shot;
public void Fire()
{
shot.Play();
}
}