mirror of
https://github.com/GTAmodding/re3.git
synced 2021-02-19 17:49:54 +01:00
24 lines
811 B
C
24 lines
811 B
C
#pragma once
|
|
|
|
void DefinedState(void);
|
|
RwFrame *GetFirstChild(RwFrame *frame);
|
|
RwObject *GetFirstObject(RwFrame *frame);
|
|
RpAtomic *GetFirstAtomic(RpClump *clump);
|
|
|
|
RwTexDictionary *RwTexDictionaryGtaStreamRead(RwStream *stream);
|
|
RwTexDictionary *RwTexDictionaryGtaStreamRead1(RwStream *stream);
|
|
RwTexDictionary *RwTexDictionaryGtaStreamRead2(RwStream *stream, RwTexDictionary *texDict);
|
|
|
|
bool RpClumpGtaStreamRead1(RwStream *stream);
|
|
RpClump *RpClumpGtaStreamRead2(RwStream *stream);
|
|
void RpClumpGtaCancelStream(void);
|
|
|
|
void CameraSize(RwCamera *camera,
|
|
RwRect *rect,
|
|
RwReal viewWindow,
|
|
RwReal aspectRatio);
|
|
void CameraDestroy(RwCamera *camera);
|
|
RwCamera *CameraCreate(RwInt32 width,
|
|
RwInt32 height,
|
|
RwBool zBuffer);
|