Ignore:
Timestamp:
05/10/18 16:04:51 (6 years ago)
Author:
davidb
Message:

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:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/apollo/gui/Strokes.java

    r356 r1102  
    11package org.apollo.gui;
    22
    3 import java.awt.BasicStroke;
    4 import java.awt.Stroke;
     3import org.expeditee.core.Stroke;
    54
    65public class Strokes {
     
    98        }
    109       
    11         public static final Stroke SOLID_1 = new BasicStroke(1.0f);
    12         public static final Stroke SOLID_2 = new BasicStroke(2.0f);
     10        public static final Stroke SOLID_1 = new Stroke(1.0f);
     11        public static final Stroke SOLID_2 = new Stroke(2.0f);
    1312       
    1413}
Note: See TracChangeset for help on using the changeset viewer.