Add fm-gradient-select
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good

This commit is contained in:
Willem Dantuma
2020-10-06 08:22:10 +02:00
parent f93d235877
commit da2492e017
11 changed files with 224 additions and 57 deletions

View File

@@ -0,0 +1,11 @@
export interface IColor {
red: number,
green: number,
blue: number,
alpha: number,
}
export interface IGradientstop {
relativestop: number,
color: IColor
}