mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-22 16:58:13 +00:00
FFDec Library is now LGPLv3, others stay GPLv3. Version changed to 3.0.0 for FFDec, 1.0.0 for FFDec Library.
12 lines
209 B
ActionScript
12 lines
209 B
ActionScript
class Cox extends Box{
|
|
public function Cox(passed_mc:MovieClip){
|
|
super(passed_mc);
|
|
}
|
|
// Methods
|
|
public function testPublic(){
|
|
trace("pub");
|
|
}
|
|
private function testPrivate(){
|
|
trace("priv");
|
|
}
|
|
} |