MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / ToString

Function ToString

Source/Engine/Platform/Base/PlatformBase.cpp:57–78  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

55volatile int64 FatalReporting = 0;
56
57const Char* ToString(NetworkConnectionType value)
58{
59 switch (value)
60 {
61 case NetworkConnectionType::None:
62 return TEXT("None");
63 case NetworkConnectionType::Unknown:
64 return TEXT("Unknown");
65 case NetworkConnectionType::AirplaneMode:
66 return TEXT("AirplaneMode");
67 case NetworkConnectionType::Cell:
68 return TEXT("Cell");
69 case NetworkConnectionType::WiFi:
70 return TEXT("WiFi");
71 case NetworkConnectionType::Bluetooth:
72 return TEXT("Bluetooth");
73 case NetworkConnectionType::Ethernet:
74 return TEXT("Ethernet");
75 default:
76 return TEXT("");
77 }
78}
79
80const Char* ToString(ScreenOrientationType value)
81{

Callers 1

RunMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected