20 lines
492 B
C#
20 lines
492 B
C#
|
|
using System;
|
||
|
|
using System.Collections;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using AK.Wwise;
|
||
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
namespace Ichni
|
||
|
|
{
|
||
|
|
public class AudioManager : MonoBehaviour
|
||
|
|
{
|
||
|
|
public MusicPlayer musicPlayer;
|
||
|
|
public AudioContainer generalSoundEffects;
|
||
|
|
|
||
|
|
private void Start()
|
||
|
|
{
|
||
|
|
InformationTransistor.instance.chapterSwitch.SetValue(gameObject);
|
||
|
|
InformationTransistor.instance.musicSwitch.SetValue(gameObject);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|