mirror of
https://github.com/SimpleMobileTools/Simple-Draw.git
synced 2025-06-05 21:59:17 +02:00
18 lines
367 B
Java
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;
|
|
}
|
|
}
|