All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ripplargames.swingengine.SwingEngine Maven / Gradle / Ivy

The newest version!
package com.ripplargames.swingengine;

import javax.swing.JFrame;

import com.ripplargames.engine.IGame;

public class SwingEngine {
    public SwingEngine(IGame game) {
        JFrame frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
        frame.setBounds(0, 0, 500, 500);
        createBindings(frame);
        frame.setVisible(true);
    }

    private void createBindings(JFrame frame) {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy