/* * SKCraft Launcher * Copyright (C) 2010-2014 Albert Pham <http://www.sk89q.com> and contributors * Please see LICENSE.txt for license information. */ package com.skcraft.launcher; import com.skcraft.launcher.dialog.LauncherFrame; import lombok.NonNull; public class FancyLauncherFrame extends LauncherFrame { /** * Create a new frame. * * @param launcher the launcher */ public FancyLauncherFrame(@NonNull Launcher launcher) { super(launcher); setSize(900, 650); setLocationRelativeTo(null); } }