misc/libphyslayer/hwpacksmounter.h
author unc0rr
Mon, 10 Mar 2014 22:47:29 +0400
changeset 10189 875607ce793d
parent 10127 7f29a65aa1e4
child 10235 bafca1686867
permissions -rw-r--r--
- Rework FillLand - Optimize fade() function a bit, don't call min() function - Only leave parts of land which touch bottom border in perlin mapgen

#ifndef HEDGEWARS_PACKAGES_MOUNTER_H
#define HEDGEWARS_PACKAGES_MOUNTER_H

#include "physfs.h"
#include "physfscompat.h"

#ifndef PAS2C
#include "lua.h"
#endif

#ifdef __cplusplus
extern "C" {
#endif

PHYSFS_DECL void hedgewarsMountPackages();
PHYSFS_DECL void hedgewarsMountPackage(char * fileName);

PHYSFS_DECL const char * physfsReader(lua_State *L, PHYSFS_File *f, size_t *size);
PHYSFS_DECL void physfsReaderSetBuffer(void *buffer);

#ifdef __cplusplus
}
#endif

#endif