mirror of
https://github.com/ConjureETS/OuijaMTLGJ2016.git
synced 2026-03-24 18:21:07 +00:00
11 lines
220 B
C#
11 lines
220 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public class RuneSoundHandler : MonoBehaviour
|
|
{
|
|
public static void MakeSound()
|
|
{
|
|
GameObject runeSound = (GameObject)Instantiate(Resources.Load("RuneSound"));
|
|
}
|
|
}
|