mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-20 07:10:09 +00:00
18 lines
363 B
C#
18 lines
363 B
C#
|
|
namespace YooAsset
|
|
{
|
|
/// <summary>
|
|
/// WebGL 游戏平台缓存系统初始化操作
|
|
/// </summary>
|
|
internal sealed class WGBCInitializeOperation : BCInitializeOperation
|
|
{
|
|
protected override void InternalStart()
|
|
{
|
|
SetResult();
|
|
}
|
|
protected override void InternalUpdate()
|
|
{
|
|
}
|
|
}
|
|
}
|