129130131132133134135136137138139
/** * レシーバを SDL_Color オブジェクトに変換して返します。 */ public SDL_Color toSource() { SDL_Color ret = new SDL_Color(); ret.r = this.red_; ret.g = this.green_; ret.b = this.blue_; ret.unused = this.alpha_;