update space shooter
parent
0e9b1e137a
commit
db54568253
|
@ -8,9 +8,14 @@ using YooAsset;
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class GameQueryServices : IQueryServices
|
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)
|
public bool QueryStreamingAssets(string packageName, string fileName)
|
||||||
|
|
|
@ -11,9 +11,14 @@ using YooAsset;
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class GameQueryServices2 : IQueryServices
|
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)
|
public bool QueryStreamingAssets(string packageName, string fileName)
|
||||||
|
|
Loading…
Reference in New Issue