blob: 18bf06939e0e29800031fee24ccce71b0b0de3f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* 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,
factory_inputsystem;
#endif
// vi: sw=4 ts=4 noet tw=80 cc=80
|