quakeforge/ruamoko/include/gui/Pic.h
2020-02-11 15:22:42 +09:00

23 lines
281 B
Objective-C

#ifndef __ruamoko_gui_Pic_h
#define __ruamoko_gui_Pic_h
#include "gui/View.h"
/** \addtogroup gui */
///@{
@interface Pic : View
{
string pic_name;
}
-(void)setPic:(string)pic;
-(void)draw;
@end
@interface CenterPic : Pic
-(void)draw;
@end
///@}
#endif//__ruamoko_gui_Pic_h