mirror of https://github.com/tuyoogame/YooAsset
update space shooter
parent
b34374adfa
commit
ab32bd390d
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue