openclonk/src/mape/random.h

30 lines
632 B
C

/*
* mape - C4 Landscape.txt editor
*
* Copyright (c) 2005-2009, Armin Burgmeier
*
* Distributed under the terms of the ISC license; see accompanying file
* "COPYING" for details.
*
* "Clonk" is a registered trademark of Matthes Bender, used with permission.
* See accompanying file "TRADEMARK" for details.
*
* To redistribute this file separately, substitute the full license texts
* for the above references.
*/
#ifndef INC_MAPE_RANDOM_H
#define INC_MAPE_RANDOM_H
#include <glib.h>
G_BEGIN_DECLS
void mape_random_seed(unsigned int seed);
G_END_DECLS
#endif /* INC_MAPE_RANDOM_H */
/* vim:set et sw=2 ts=2: */