mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2026-02-18 16:14:31 -07: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__
|