OSDN Git Service

d039a54886ad674d3ff086c808d6f796bc7b5a57
[flapp/flapp.git] / src / swf / tag / setbackgroundcolor.js
1 /*
2   SetBackgroundColor parser
3 */
4 goog.provide('FlappSWFTagSetBackgroundColor');
5
6 goog.scope(function() {
7
8 /**
9  * @constructor
10  */
11 FlappSWFTagSetBackgroundColor = function(code, length, ibit) {
12 //      console.log("FlappSWFTagSetBackgroundColor(code:"+code+", length:"+length+", ibit)");
13     this.code = code;
14     this.length = length;
15     //
16     this.red = ibit.ui8();
17     this.green = ibit.ui8();
18     this.blue = ibit.ui8();
19 };
20
21 });