| 519 | class TitleEffectWhiteOut : public TitleEffectColorOut |
| 520 | { |
| 521 | public: |
| 522 | TitleEffectWhiteOut() : TitleEffectColorOut(PackedWhite) {} |
| 523 | }; |
| 524 | |
| 525 | class TitleEffectBlack : public TitleEffectBlackFaded |
| 526 | { |
| 527 | typedef TitleEffectBlackFaded base; |
| 528 | |
| 529 | public: |
| 530 | void Init(); |
| 531 | }; |
| 532 | |
| 533 | void TitleEffectBlack::Init() |
| 534 | { |
| 535 | SetFade(0, 0); |
| 536 | } |
| 537 | |
| 538 | static TitleEffectBasic* CreateEffect(TitEffectName name) |
| 539 | { |
| 540 | switch (name) |
| 541 | { |
| 542 | case TitBlack: |
| 543 | case TitBlackOut: |
| 544 | return new TitleEffectBlackOut; |
| 545 | case TitBlackIn: |
no outgoing calls
no test coverage detected