18 lines
341 B
C++
18 lines
341 B
C++
//================= Copyright kotofyt, All rights reserved ==================//
|
|
// Purpose: Object handler.
|
|
//===========================================================================//
|
|
|
|
#ifndef OBJ_H
|
|
#define OBJ_H
|
|
|
|
#include "tier1/utlstring.h"
|
|
|
|
struct Object_t
|
|
{
|
|
public:
|
|
CUtlString m_szObjectFile;
|
|
CUtlString m_szSourceFile;
|
|
};
|
|
|
|
#endif
|