18 lines
192 B
C#
18 lines
192 B
C#
using UnityEngine;
|
|
|
|
public class WolfSoundEvent : MonoBehaviour
|
|
{
|
|
private void Start()
|
|
{
|
|
}
|
|
|
|
private void Update()
|
|
{
|
|
}
|
|
|
|
public void Zawyj()
|
|
{
|
|
GetComponent<AudioSource>().Play();
|
|
}
|
|
}
|