flash on 2009-7-17

by murderdeathkitty
♥0 | Line 17 | Modified 2009-07-17 07:16:03 | MIT License
play

ActionScript3 source code

/**
 * Copyright murderdeathkitty ( http://wonderfl.net/user/murderdeathkitty )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/uO9e
 */

package {
    import flash.display.*;
    import flash.events.*;
    public class SoundFork extends Sprite {
        public function SoundFork(): void
        {
            addEventListener(Event.ADDED_TO_STAGE, start);
            addEventListener(Event.REMOVED_FROM_STAGE, stop);
        }
        public function start(e: Event = null): void
        {
        }
        public function stop(e: Event = null): void
        {
        }
    }
}

Forked