Package model

Source Code of model.Memory

package model;

import view.ConfigFrame;
import view.MemoryFrame;
import control.Storage;
import control.Util;

public class Memory {

  /**
   * @param args
   */
  public static void main(String[] args) {

    new ConfigFrame();
    if (Storage.getInstance().isConfigured()) {
      while (Storage.getInstance().isNewGame()) {
        Util.resetStats();
        new MemoryFrame();
      }
    }

  }
}
TOP

Related Classes of model.Memory

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.