【m】插件上传
This commit is contained in:
21
Packages/com.unity.renderstreaming@3.1.0-exp.9/Editor/RequestInfo/RemoveRequestInfo.cs
vendored
Normal file
21
Packages/com.unity.renderstreaming@3.1.0-exp.9/Editor/RequestInfo/RemoveRequestInfo.cs
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
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
|
||||
Reference in New Issue
Block a user