

Definition at line 9 of file EffectNone.h.
| Public Member Functions | |
| virtual void | blit (SDL_Surface *screen, SDL_Surface *surface, int x, int y) | 
| Blit without special effect. | |
| 
 | ||||||||||||||||||||
| Blit without special effect. 
 Implements ViewEffect. Definition at line 16 of file EffectNone.cpp. 00017 {
00018     SDL_Rect rect;
00019     rect.x = x;
00020     rect.y = y;
00021     SDL_BlitSurface(surface, NULL, screen, &rect);
00022 }
 | 
 1.4.2
 1.4.2