Started work on build system

This commit is contained in:
2025-05-31 00:42:18 +03:00
parent b83078553e
commit 953cca2aa4
16 changed files with 389 additions and 0 deletions

13
fpc/public/obj.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef OBJ_H
#define OBJ_H
#include "tier1/utlstring.h"
class CObject
{
public:
CUtlString m_szObjectFile;
CUtlString m_szSourceFile;
};
#endif