package lectures.animation.threads_commands.extra;
import util.annotations.WebDocuments;

import bus.uigen.OEFrame;

@WebDocuments({"Lectures/AnimationThreadsCommandsExtra.pptx", "Lectures/AnimationThreadsCommandsExtra.pdf", "Videos/AnimationThreadsCommandsExtra.avi"})
public class CompositeCommandDriver extends CommandsDriver{
    public static void main (String[] args) {
        CompositeCommand commands = new ACompositeCommand();
        OEFrame oeFrame = createAndDisplayCommands(commands);
        commands.run();     
    }

}