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

17
public/iappsystem.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef APP_SYSTEM_H
#define APP_SYSTEM_H
#include "tier1/interface.h"
//----------------------------------------------------------------------------
// App system is a module which has different applications based on the user's system.
// For example rendering could use either Vulkan or Metal based on the system.
//----------------------------------------------------------------------------
abstract_class IAppSystem
{
public:
virtual void Init() = 0;
virtual void Shutdown() = 0;
};
#endif