update space shooter

pull/134/head
hevinci 2023-07-20 11:08:52 +08:00
parent b34374adfa
commit ab32bd390d
2 changed files with 14 additions and 4 deletions

View File

@ -8,9 +8,14 @@ using YooAsset;
/// </summary>
public class GameQueryServices : IQueryServices
{
public string QueryDeliveryFiles(string packageName, string fileName)
public DeliveryFileInfo GetDeliveryFileInfo(string packageName, string fileName)
{
return null;
throw new System.NotImplementedException();
}
public bool QueryDeliveryFiles(string packageName, string fileName)
{
return false;
}
public bool QueryStreamingAssets(string packageName, string fileName)

View File

@ -11,9 +11,14 @@ using YooAsset;
/// </summary>
public class GameQueryServices2 : IQueryServices
{
public string QueryDeliveryFiles(string packageName, string fileName)
public DeliveryFileInfo GetDeliveryFileInfo(string packageName, string fileName)
{
return null;
throw new System.NotImplementedException();
}
public bool QueryDeliveryFiles(string packageName, string fileName)
{
return false;
}
public bool QueryStreamingAssets(string packageName, string fileName)