mirror of
https://github.com/AndorsTrailRelease/ATCS.git
synced 2025-10-27 18:44:03 +01:00
20 lines
443 B
Java
20 lines
443 B
Java
package com.gpl.rpg.atcontentstudio.model;
|
|
|
|
import java.awt.Dimension;
|
|
import java.io.Serializable;
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
|
|
public class Preferences implements Serializable {
|
|
|
|
private static final long serialVersionUID = 2455802658424031276L;
|
|
|
|
public Dimension windowSize = null;
|
|
public Map<String, Integer> splittersPositions = new HashMap<String, Integer>();
|
|
|
|
public Preferences() {
|
|
|
|
}
|
|
|
|
}
|