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

14 lines
198 B
JavaScript
Raw Normal View History

2016-10-14 12:32:53 +02:00
/**
* Color Superset
* @param r
* @param g
* @param b
* @param a
* @constructor
*/
GameLib.D3.Color = function(r, g, b, a) {
this.r = r;
this.g = g;
this.b = b;
this.a = a;
2016-10-14 13:08:22 +02:00
};