diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8d4a6c0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +bin +obj \ No newline at end of file diff --git a/Fade.as3proj b/Fade.as3proj new file mode 100644 index 0000000..7355654 --- /dev/null +++ b/Fade.as3proj @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/lib/as3crypto.swc b/lib/as3crypto.swc new file mode 100644 index 0000000..cd7a322 Binary files /dev/null and b/lib/as3crypto.swc differ diff --git a/lib/base64.swc b/lib/base64.swc new file mode 100644 index 0000000..48fea63 Binary files /dev/null and b/lib/base64.swc differ diff --git a/src/com/muzari/polskabot/fade/Main.as b/src/com/muzari/polskabot/fade/Main.as new file mode 100644 index 0000000..4b983b2 --- /dev/null +++ b/src/com/muzari/polskabot/fade/Main.as @@ -0,0 +1,27 @@ +package com.muzari.polskabot.fade +{ + import flash.display.Sprite; + import flash.events.Event; + + /** + * ... + * @author Wiktor Tkaczyński + */ + public class Main extends Sprite + { + + public function Main() + { + if (stage) init(); + else addEventListener(Event.ADDED_TO_STAGE, init); + } + + private function init(e:Event = null):void + { + removeEventListener(Event.ADDED_TO_STAGE, init); + // entry point + } + + } + +} \ No newline at end of file