8 lines
138 B
C#
8 lines
138 B
C#
using System;
|
|
using ZXKFramework;
|
|
public class PlaySoundEvent : IGameEvent
|
|
{
|
|
public string path;
|
|
public Action<float> callBack;
|
|
}
|