Files
Work/proto/source/MAPTERR.HPP
2024-08-07 09:16:27 -04:00

20 lines
491 B
C++

#ifndef _PROTO_MAPTERR_HPP
#define _PROTO_MAPTERR_HPP_
class Display;
class ViewPoint;
class TrigTable;
class Angles;
class Geometry;
class Bitmap;
extern "C"
{
int mapTerrain(ViewPoint *pViewPoint,void *pBackBuffer,DWORD bmWidth,DWORD bmHeight);
int setTrig(TrigTable *pTrigTable);
int setAngles(Angles *pAngles);
int setGeometry(Geometry *pGeometry);
int setMaps(Bitmap *pColorBitmap,Bitmap *pHeightBitmap);
void mapProfile(int *pColIter,int *pStepIter,int *pWhileIter);
}
#endif