nodePong/client/lib/ui/objects/ui_text_style_.js

20 lines
320 B
JavaScript
Raw Normal View History

2016-02-14 00:23:22 +01:00
/**
* @file ui_text_style.js
* @author frtk@tetalab
*/
NPGClient.UITextStyle = function(f, c, a) {
this.font = f !== undefined ? f : '';
this.color = c !== undefined ? c : '';
this.align = a !== undefined ? a : '';
};
NPGClient.UITextStyle.prototype = {
constructor: NPGClient.UITextStyle,
};