14 lines
152 B
C++
14 lines
152 B
C++
#ifndef OBJ_H
|
|
#define OBJ_H
|
|
|
|
#include "tier1/utlstring.h"
|
|
|
|
struct Object_t
|
|
{
|
|
public:
|
|
CUtlString m_szObjectFile;
|
|
CUtlString m_szSourceFile;
|
|
};
|
|
|
|
#endif
|