lauchpioos/src/shapeStyle.ts
2021-11-26 23:07:28 +01:00

16 lines
322 B
TypeScript

module Util
{
export class ShapeStyle
{
public strokeWidth: number;
public strokeColor: string;
public fillColor: string;
constructor()
{
this.strokeWidth = 1;
this.strokeColor = '#000000';
this.fillColor = '#00000000';
}
}
}