Vulkan stuff

This commit is contained in:
2025-09-20 12:39:42 +03:00
parent ab404bf672
commit 287102dcea
19 changed files with 137 additions and 152 deletions

17
public/tier2/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