source: trunk/src/org/apollo/gui/Strokes.java@ 1102

Last change on this file since 1102 was 1102, checked in by davidb, 6 years ago

Reworking of the code-base to separate logic from graphics. This version of Expeditee now supports a JFX graphics as an alternative to SWING

File size: 226 bytes
Line 
1package org.apollo.gui;
2
3import org.expeditee.core.Stroke;
4
5public class Strokes {
6
7 private Strokes() {
8 }
9
10 public static final Stroke SOLID_1 = new Stroke(1.0f);
11 public static final Stroke SOLID_2 = new Stroke(2.0f);
12
13}
Note: See TracBrowser for help on using the repository browser.