mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-22 21:25:48 +00:00
12 lines
238 B
ActionScript
12 lines
238 B
ActionScript
package com.jpexs.decompiler.flash.debugger {
|
|
|
|
import flash.external.ExternalInterface;
|
|
|
|
public function debugConsole(msg):*{
|
|
if(ExternalInterface.available)
|
|
ExternalInterface.call("console.log",""+msg);
|
|
return msg;
|
|
}
|
|
|
|
}
|