15 lines
		
	
	
		
			298 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			298 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Collections;
 | 
						|
using System.Collections.Generic;
 | 
						|
using UnityEngine;
 | 
						|
using RPGCreationKit;
 | 
						|
using RPGCreationKit.AI;
 | 
						|
 | 
						|
namespace RPGCreationKit.AI
 | 
						|
{
 | 
						|
    public class AISounds : MonoBehaviour
 | 
						|
    {
 | 
						|
        public AudioClip[] takeDamageSounds;
 | 
						|
        public AudioClip[] deathSounds;
 | 
						|
 | 
						|
    }
 | 
						|
} |