mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
12 lines
295 B
C#
12 lines
295 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using YooAsset;
|
|
|
|
public static class HandleBaseExtension
|
|
{
|
|
public static bool IsSucceed(this HandleBase thisHandle)
|
|
{
|
|
return thisHandle.IsDone && thisHandle.Status == EOperationStatus.Succeed;
|
|
}
|
|
} |