mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-24 01:23:53 +00:00
4f5b9d019a
git-svn-id: https://openmw.svn.sourceforge.net/svnroot/openmw/trunk@121 ea6a568a-9f4f-0410-981a-c910a81bb256
17 lines
434 B
D
17 lines
434 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);
|
|
float terr_getSqCamDist(Bounds);
|
|
MeshObj terr_makeMesh(int segment, SceneNode);
|
|
void terr_killMesh(MeshObj);
|
|
|
|
void terr_genData();
|
|
void terr_setupRendering();
|