mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-19 14:53:56 -07:00
15 lines
283 B
C++
15 lines
283 B
C++
#ifndef INCLUDED_MISCSTATE
|
|
#define INCLUDED_MISCSTATE
|
|
|
|
#include "General/Observable.h"
|
|
|
|
namespace AtlasMessage
|
|
{
|
|
typedef size_t ObjectID;
|
|
}
|
|
|
|
extern wxString g_SelectedTexture;
|
|
|
|
extern Observable<std::vector<AtlasMessage::ObjectID> > g_SelectedObjects;
|
|
|
|
#endif // INCLUDED_MISCSTATE
|