diff options
author | Michael Smith <mikesmiffy128@gmail.com> | 2021-11-20 03:10:50 +0000 |
---|---|---|
committer | Michael Smith <mikesmiffy128@gmail.com> | 2021-11-20 03:18:08 +0000 |
commit | da6f343032cb01597dc7866e66f091adf3243a62 (patch) | |
tree | 870f8cb8e82bb42202ab92bea03fc6ab35ada7ca /src/factory.h |
Initial public snapshot
With code from Bill. Thanks Bill!
Diffstat (limited to 'src/factory.h')
-rw-r--r-- | src/factory.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/factory.h b/src/factory.h new file mode 100644 index 0000000..a72afef --- /dev/null +++ b/src/factory.h @@ -0,0 +1,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 |