diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2009-10-29 12:14:31 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2009-10-29 12:14:31 +0000 |
| commit | e56feb597bc743677633432f77513b02907fd169 (patch) | |
| tree | 5b6bbb983fcf33cfe5eef8aec1298608257036b5 /src/engine/client/client.h | |
| parent | 878ede3080ab2cfb627aca505c397d9765052996 (diff) | |
| download | zcatch-e56feb597bc743677633432f77513b02907fd169.tar.gz zcatch-e56feb597bc743677633432f77513b02907fd169.zip | |
added missing headers
Diffstat (limited to 'src/engine/client/client.h')
| -rw-r--r-- | src/engine/client/client.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/engine/client/client.h b/src/engine/client/client.h new file mode 100644 index 00000000..64ef6d9b --- /dev/null +++ b/src/engine/client/client.h @@ -0,0 +1,17 @@ + + +class IEngine +{ +public: + virtual ~IEngine() {} + virtual class IGraphics *Graphics() = 0; +}; + + +class IGameClient +{ +public: + virtual ~IGameClient() {} +}; + +extern IGameClient *CreateGameClient(IEngine *pEngine); |