Files
funnygame/fpc/public/obj.h
2025-07-31 18:07:25 +03:00

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