Files
Simple-Draw/app/src/main/java/com/simplemobiletools/draw/PaintOptions.java
2017-01-14 18:44:43 +01:00

18 lines
367 B
Java

package com.simplemobiletools.draw;
import android.graphics.Color;
class PaintOptions {
int color = Color.BLACK;
float strokeWidth = 5f;
PaintOptions() {
//Empty constructor for instantiating with default values
}
PaintOptions(int color, float strokeWidth) {
this.color = color;
this.strokeWidth = strokeWidth;
}
}