forked from mirror/openmw-tes3mp
f739bf90f1
git-svn-id: https://openmw.svn.sourceforge.net/svnroot/openmw/trunk@123 ea6a568a-9f4f-0410-981a-c910a81bb256
18 lines
478 B
D
18 lines
478 B
D
module terrain.bindings;
|
|
|
|
alias void *SceneNode;
|
|
alias void *Bounds;
|
|
alias void *MeshObj;
|
|
|
|
extern(C):
|
|
|
|
SceneNode terr_createChildNode(float relX, float relY, SceneNode);
|
|
void terr_destroyNode(SceneNode);
|
|
Bounds terr_makeBounds(float minHeight, float maxHeight, float width, SceneNode);
|
|
void terr_killBounds(Bounds);
|
|
float terr_getSqCamDist(Bounds);
|
|
MeshObj terr_makeMesh(SceneNode,void*,int,float);
|
|
void terr_killMesh(MeshObj);
|
|
|
|
void terr_genData();
|
|
void terr_setupRendering();
|