Files
webRtc/Packages/com.unity.renderstreaming@3.1.0-exp.9/Editor/RequestInfo/RemoveRequestInfo.cs

22 lines
532 B
C#
Raw Normal View History

2026-04-28 16:48:04 +08:00
using System; //Action
namespace Unity.RenderStreaming.Editor
{
class RemoveRequestInfo
{
internal string PackageName;
internal Action OnSuccessAction;
internal Action OnFailAction;
internal RemoveRequestInfo(string packageName,
Action onSuccess, Action onFail)
{
PackageName = packageName;
OnSuccessAction = onSuccess;
OnFailAction = onFail;
}
}
} //namespace Unity.RenderStreaming.Editor