view src/textures.h @ 50:48d4f8e3fce5

Add simple functions for checking if texture name is "valid" (e.g. not empty or "-")
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 26 Sep 2011 04:39:34 +0300
parents a68786b9c74b
children 210bfe10609f
line wrap: on
line source

/*
 *        textures.h
 *        AYM 2000-04-29
 */


#ifndef YH_TEXTURES                /* DO NOT ADD ANYTHING BEFORE THIS LINE */
#define YH_TEXTURES


#include "lists.h"


/* textures.cc */
void DisplayPic(hookfunc_comm_t * c);
void ChooseWallTexture(int, int, const char *, int, char **, char *);
void GetWallTextureSize(i16 *, i16 *, const char *);

int  InvalidTextureName(const char *);
int  ValidTextureName(const char *);

#endif