no engine anymore

This commit is contained in:
2025-07-30 23:53:26 +03:00
parent 8a29e6b86f
commit 395ced9e28
159 changed files with 2767 additions and 9484 deletions

26
public/funnyformat.h Normal file
View File

@@ -0,0 +1,26 @@
#ifndef FUNNY_FORMAT_H
#define FUNNY_FORMAT_H
#include "tier0/platform.h"
#include "ifilesystem.h"
#include "tier1/utlvector.h"
struct FunnyFormatParameter_t
{
const char *szName;
uint32_t nDataSize;
void *pData;
};
struct FunnyFormatData_t
{
};
abstract_class IFunnyFormatManager
{
public:
virtual FunnyFormatData_t ReadFile( IFileHandle *pHandle ) = 0;
virtual void WriteFile( IFileHandle *pHandle, FunnyFormatData_t data ) = 0;
};
#endif