mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-08 05:24:39 +01:00
7b0f100f27
a guest. Networking's next....
16 lines
259 B
C
16 lines
259 B
C
|
|
#ifndef _ANDGLOBALS_H_
|
|
#define _ANDGLOBALS_H_
|
|
|
|
#include "vtabmgr.h"
|
|
#include "dictnry.h"
|
|
|
|
typedef struct _AndGlobals {
|
|
VTableMgr* vtMgr;
|
|
CurGameInfo* gi;
|
|
DrawCtx* dctx;
|
|
XW_UtilCtxt* util;
|
|
TransportProcs* xportProcs;
|
|
} AndGlobals;
|
|
|
|
#endif
|