summaryrefslogtreecommitdiffhomepage
path: root/src/factory.h
blob: a72afef3aa7a4bccee09cc19a394250b0455db97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* This file is dedicated to the public domain. */

#ifndef INC_FACTORY_H
#define INC_FACTORY_H

/* Access to game and engine factories obtained on plugin load */

typedef void *(*ifacefactory)(const char *name, int *ret);
extern ifacefactory factory_client, factory_server, factory_engine;

#endif

// vi: sw=4 ts=4 noet tw=80 cc=80