21 lines
475 B
C++
21 lines
475 B
C++
|
|
#include "stdafx.h"
|
||
|
|
/*
|
||
|
|
-----------------------------------------------------------------------------
|
||
|
|
Class: InputQueue
|
||
|
|
|
||
|
|
Desc: See Header.
|
||
|
|
|
||
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
||
|
|
Chris Danford
|
||
|
|
-----------------------------------------------------------------------------
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "InputQueue.h"
|
||
|
|
#include "IniFile.h"
|
||
|
|
#include "GameManager.h"
|
||
|
|
|
||
|
|
|
||
|
|
InputQueue* INPUTQUEUE = NULL; // global and accessable from anywhere in our program
|
||
|
|
|
||
|
|
|