-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathURTEvent.cs
22 lines (18 loc) · 956 Bytes
/
URTEvent.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
namespace URT
{
public static class URTEvent
{
public static ConfirmDelegate ConfirmUpdateEvent;
public static ProjectCompleteDelegate UpdateProjectCompleteEvent;
public static NoticeDelegate DiskSizeNotEnoughEvent;
public static RemoteTextDelegate GetServerMD5TextEvent;
public static RemoteTextDelegate GetServerInfoEvent;
public delegate void ProjectCompleteDelegate(ErrorCode code, string message);
public delegate void ConfirmDelegate(Action ok, Action cancel, params object[] args);
public delegate void NoticeDelegate(Action ok, params object[] args);
public delegate void RemoteTextDelegate(ErrorCode code, string message);
public delegate void OnDownloadAssetBundleProcess(string abname, int totalSize, int currentSize, int contentSize);
public delegate void OnDownloadAssetBundleComplete(ErrorCode code, string message);
}
}