fallout2-ce/src/text_object.h

20 lines
587 B
C

#ifndef TEXT_OBJECT_H
#define TEXT_OBJECT_H
#include "geometry.h"
#include "obj_types.h"
int textObjectsInit(unsigned char* windowBuffer, int width, int height);
int textObjectsReset();
void textObjectsFree();
void textObjectsDisable();
void textObjectsEnable();
void textObjectsSetBaseDelay(double value);
void textObjectsSetLineDelay(double value);
int textObjectAdd(Object* object, char* string, int font, int color, int a5, Rect* rect);
void textObjectsRenderInRect(Rect* rect);
int textObjectsGetCount();
void textObjectsRemoveByOwner(Object* object);
#endif /* TEXT_OBJECT_H */