inventory UI wip update

Two columns, some marginal spaces to make it look better


Former-commit-id: c26d11e499970280b78193772d29937295916ae2
This commit is contained in:
Song Minjae
2017-03-27 02:58:52 +09:00
parent e47ffff126
commit 61ad40672e
8 changed files with 171 additions and 47 deletions

View File

@@ -635,3 +635,10 @@ operator fun Color.times(other: Color) = Color(
this.b * other.b,
this.a * other.a
)
operator fun Color.minus(other: Color) = Color(
this.r - other.r,
this.g - other.g,
this.b - other.b,
this.a - other.a
)