22 lines
450 B
C#
22 lines
450 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Ichni.Menu
|
|
{
|
|
public class StartPage : MonoBehaviour
|
|
{
|
|
public AudioContainer audioContainer;
|
|
|
|
private void Awake()
|
|
{
|
|
audioContainer = GetComponent<AudioContainer>();
|
|
}
|
|
|
|
public void TouchToStart()
|
|
{
|
|
audioContainer.PlaySoundFX("TouchToStart");
|
|
}
|
|
}
|
|
} |