Files
funnygame/public/tier2/fileformats/plist.h
2026-01-05 00:30:37 +02:00

14 lines
241 B
C++

#ifndef TIER2_PLIST_H
#define TIER2_PLIST_H
#include "tier2/fileformats/json.h"
abstract_class IPropertyListManager
{
public:
virtual IJSONObject *ReadString( const char *psz ) = 0;
};
IPropertyListManager *PropertyListManager();
#endif