avm2: Stub TextureBase.dispose

This commit is contained in:
Aaron Hill 2023-03-15 19:51:25 -05:00
parent e194883ef6
commit 16ff2a17e3
1 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,10 @@
package flash.display3D.textures {
import flash.events.EventDispatcher;
public class TextureBase extends EventDispatcher {
import __ruffle__.stub_method;
public class TextureBase extends EventDispatcher {
public function dispose():void {
stub_method("flash.display3D.textures.TextureBase", "dispose");
}
}
}