2017-04-08 18:54:14 +02:00

16 lines
285 B
Kotlin

package com.simplemobiletools.draw
import android.graphics.Color
class PaintOptions {
var color = Color.BLACK
var strokeWidth = 5f
constructor()
constructor(color: Int, strokeWidth: Float) {
this.color = color
this.strokeWidth = strokeWidth
}
}