Class AssetLibGDXImpl was fixed after change of the Pixel API

This commit is contained in:
Robert Vokac 2024-09-13 20:39:39 +02:00
parent 63a7e4e9dd
commit 6105b8588d
No known key found for this signature in database
GPG Key ID: C459E1E4B4A986BB

View File

@ -20,6 +20,7 @@
package com.pixelgamelibrary.backend.libgdx;
import com.pixelgamelibrary.api.interfaces.AssetI;
import com.pixelgamelibrary.api.storage.Storage;
/**
*
@ -27,6 +28,11 @@ import com.pixelgamelibrary.api.interfaces.AssetI;
*/
public class AssetLibGDXImpl implements AssetI {
@Override
public Storage getAssets() {
throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
}
}