LNXSDK/Kha/Sources/kha/Resource.hx

13 lines
281 B
Haxe
Raw Normal View History

2025-01-22 16:18:30 +01:00
package kha;
/**
* Interface representing a generic application resource.
* It can go from images, to sound or music, videos or blobs.
*/
interface Resource {
/**
* Unload the resource from memory. Normally called by the Loader.
*/
function unload(): Void;
}