add NetworkUtil, move NetworkDeviceType to seperate file

This commit is contained in:
technyon
2024-08-18 07:20:00 +02:00
parent 2bd61b8f34
commit b924746799
6 changed files with 88 additions and 76 deletions

9
src/util/NetworkUtil.h Normal file
View File

@@ -0,0 +1,9 @@
#pragma once
#include <enums/NetworkDeviceType.h>
class NetworkUtil
{
public:
static NetworkDeviceType GetDeviceTypeFromPreference(int hardwareDetect, int customPhy);
};