r3-legacy/src/game-lib-api-color.js

6 lines
138 B
JavaScript
Raw Normal View History

2016-12-01 18:37:57 +01:00
GameLib.D3.API.Color = function Color(r, g, b, a) {
this.r = r || 1;
this.g = g || 1;
this.b = b || 1;
this.a = a || 0;
};