mirror of
https://github.com/Memorix101/UnityXNA/
synced 2024-12-30 15:25:35 +01:00
16 lines
281 B
C#
16 lines
281 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Microsoft.Xna.Framework.Media
|
|||
|
{
|
|||
|
public class Song : IDisposable
|
|||
|
{
|
|||
|
public void Dispose()
|
|||
|
{ }
|
|||
|
|
|||
|
public UnityEngine.AudioClip Clip { get; set; }
|
|||
|
}
|
|||
|
}
|