mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2026-03-27 07:28:51 -06:00
17 lines
251 B
C++
17 lines
251 B
C++
#ifndef __IDS_H__
|
|
#define __IDS_H__
|
|
|
|
namespace wi {
|
|
|
|
const int kidmGameTimer = 1;
|
|
const int kidmPreGameTimer = 2;
|
|
|
|
STARTLABEL(MsgLabels)
|
|
LABEL(kidmGameTimer)
|
|
LABEL(kidmPreGameTimer)
|
|
ENDLABEL(MsgLabels)
|
|
|
|
} // namespace wi
|
|
|
|
#endif // __IDS_H__
|