├── .gitignore ├── Example.png ├── LICENSE ├── Ping.uplugin ├── README.md ├── Resources └── Icon128.png └── Source └── Ping ├── Ping.Build.cs ├── Private ├── IPingThread.cpp ├── MacLinuxPingThread.cpp ├── Ping.cpp ├── PingIP.cpp ├── PingPrivatePCH.h └── WinPingThread.cpp └── Public ├── IPingThread.h ├── MacLinuxPingThread.h ├── Ping.h ├── PingIP.h └── WinPingThread.h /.gitignore: -------------------------------------------------------------------------------- 1 | Binaries/ 2 | Intermediate/ 3 | -------------------------------------------------------------------------------- /Example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DescendentStudios/PingPlugin/HEAD/Example.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DescendentStudios/PingPlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /Ping.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DescendentStudios/PingPlugin/HEAD/Ping.uplugin -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DescendentStudios/PingPlugin/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DescendentStudios/PingPlugin/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Source/Ping/Ping.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DescendentStudios/PingPlugin/HEAD/Source/Ping/Ping.Build.cs -------------------------------------------------------------------------------- /Source/Ping/Private/IPingThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DescendentStudios/PingPlugin/HEAD/Source/Ping/Private/IPingThread.cpp -------------------------------------------------------------------------------- /Source/Ping/Private/MacLinuxPingThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DescendentStudios/PingPlugin/HEAD/Source/Ping/Private/MacLinuxPingThread.cpp -------------------------------------------------------------------------------- /Source/Ping/Private/Ping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DescendentStudios/PingPlugin/HEAD/Source/Ping/Private/Ping.cpp -------------------------------------------------------------------------------- /Source/Ping/Private/PingIP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DescendentStudios/PingPlugin/HEAD/Source/Ping/Private/PingIP.cpp -------------------------------------------------------------------------------- /Source/Ping/Private/PingPrivatePCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DescendentStudios/PingPlugin/HEAD/Source/Ping/Private/PingPrivatePCH.h -------------------------------------------------------------------------------- /Source/Ping/Private/WinPingThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DescendentStudios/PingPlugin/HEAD/Source/Ping/Private/WinPingThread.cpp -------------------------------------------------------------------------------- /Source/Ping/Public/IPingThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DescendentStudios/PingPlugin/HEAD/Source/Ping/Public/IPingThread.h -------------------------------------------------------------------------------- /Source/Ping/Public/MacLinuxPingThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DescendentStudios/PingPlugin/HEAD/Source/Ping/Public/MacLinuxPingThread.h -------------------------------------------------------------------------------- /Source/Ping/Public/Ping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DescendentStudios/PingPlugin/HEAD/Source/Ping/Public/Ping.h -------------------------------------------------------------------------------- /Source/Ping/Public/PingIP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DescendentStudios/PingPlugin/HEAD/Source/Ping/Public/PingIP.h -------------------------------------------------------------------------------- /Source/Ping/Public/WinPingThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DescendentStudios/PingPlugin/HEAD/Source/Ping/Public/WinPingThread.h --------------------------------------------------------------------------------