mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 13:41:32 +00:00
19 lines
244 B
C
19 lines
244 B
C
|
#ifndef __ruamoko_gui_Pic_h
|
||
|
#define __ruamoko_gui_Pic_h
|
||
|
|
||
|
#include "gui/View.h"
|
||
|
|
||
|
@interface Pic : View
|
||
|
{
|
||
|
string pic_name;
|
||
|
}
|
||
|
-(void)setPic:(string)pic;
|
||
|
-(void)draw;
|
||
|
@end
|
||
|
|
||
|
@interface CenterPic : Pic
|
||
|
-(void)draw;
|
||
|
@end
|
||
|
|
||
|
#endif//__ruamoko_gui_Pic_h
|