20 lines
336 B
Java
20 lines
336 B
Java
package com.bernard.zikator;
|
|
|
|
import com.bernard.zikator.view.MainFrame;
|
|
|
|
public class Zikator {
|
|
|
|
public static final MainFrame theFrame;
|
|
static{
|
|
theFrame = new MainFrame();
|
|
}
|
|
public static final ZiKonfig theKonfig;
|
|
static{
|
|
theKonfig = new ZiKonfig();
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
|
|
}
|
|
}
|