| 102 | } |
| 103 | |
| 104 | int CreateVFS() |
| 105 | { |
| 106 | std::error_code ec = {}; |
| 107 | auto resourceRoot = (skr::filesystem::current_path(ec) / "../resources").u8string(); |
| 108 | skr_vfs_desc_t vfs_desc = {}; |
| 109 | vfs_desc.mount_type = SKR_MOUNT_TYPE_CONTENT; |
| 110 | vfs_desc.override_mount_dir = resourceRoot.c_str(); |
| 111 | resource_vfs = skr_create_vfs(&vfs_desc); |
| 112 | return 0; |
| 113 | } |
| 114 | |
| 115 | static void DebugOutput(ESteamNetworkingSocketsDebugOutputType eType, const char* pszMsg); |
| 116 | int InitializeChat(); |
no test coverage detected