blob: 808acb45922aa26495b0684a22ef3dac21cc47ff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//===========================================================================//
#ifndef ILOCALIZE_H
#define ILOCALIZE_H
#ifdef _WIN32
#pragma once
#endif
#include "tier1/ilocalize.h"
namespace vgui
{
class ILocalize : public ::ILocalize { }; // backwards compatability with vgui::ILocalize declarations
}
#define VGUI_LOCALIZE_INTERFACE_VERSION "VGUI_Localize005"
#endif // ILOCALIZE_H
|