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

@WebDocuments({"Lectures/AnimationThreadsCommandsExtra.pptx", "Lectures/AnimationThreadsCommandsExtra.pdf", "Videos/AnimationThreadsCommandsExtra.avi"})
public class ThreadSupport {
    
    public static void sleep(long interval) {
        try {
            Thread.sleep(interval);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }


}