started working on ini parser

This commit is contained in:
2025-08-20 01:27:25 +03:00
parent 5635cd1d69
commit eff681ca33
47 changed files with 1465 additions and 112 deletions

View File

@@ -3,6 +3,7 @@
#include "tier0/platform.h"
#include "tier1/utlstring.h"
#include "tier1/utlvector.h"
abstract_class IINISection
{
@@ -16,7 +17,7 @@ public:
abstract_class IINIFile
{
public:
virtual void GetSection( const char *szSectionName ) = 0;
virtual IINISection *GetSection( const char *szSectionName ) = 0;
};
abstract_class IINIManager