mirror of
https://github.com/SimpleMobileTools/Simple-Draw.git
synced 2025-05-09 06:19:40 +02:00
16 lines
285 B
Kotlin
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
|
|
}
|
|
}
|