├── .gitignore ├── LICENSE ├── README.md ├── Resources └── Icon128.png ├── RuntimeScreenshots.uplugin └── Source └── RuntimeScreenshots ├── Private ├── RuntimeScreenshots.cpp └── ScreenshotAction.cpp ├── Public ├── RuntimeScreenshots.h └── ScreenshotAction.h └── RuntimeScreenshots.Build.cs /.gitignore: -------------------------------------------------------------------------------- 1 | Binaries/ 2 | Intermediate/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IT-Hock/RuntimeScreenshots/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IT-Hock/RuntimeScreenshots/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IT-Hock/RuntimeScreenshots/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /RuntimeScreenshots.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IT-Hock/RuntimeScreenshots/HEAD/RuntimeScreenshots.uplugin -------------------------------------------------------------------------------- /Source/RuntimeScreenshots/Private/RuntimeScreenshots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IT-Hock/RuntimeScreenshots/HEAD/Source/RuntimeScreenshots/Private/RuntimeScreenshots.cpp -------------------------------------------------------------------------------- /Source/RuntimeScreenshots/Private/ScreenshotAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IT-Hock/RuntimeScreenshots/HEAD/Source/RuntimeScreenshots/Private/ScreenshotAction.cpp -------------------------------------------------------------------------------- /Source/RuntimeScreenshots/Public/RuntimeScreenshots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IT-Hock/RuntimeScreenshots/HEAD/Source/RuntimeScreenshots/Public/RuntimeScreenshots.h -------------------------------------------------------------------------------- /Source/RuntimeScreenshots/Public/ScreenshotAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IT-Hock/RuntimeScreenshots/HEAD/Source/RuntimeScreenshots/Public/ScreenshotAction.h -------------------------------------------------------------------------------- /Source/RuntimeScreenshots/RuntimeScreenshots.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IT-Hock/RuntimeScreenshots/HEAD/Source/RuntimeScreenshots/RuntimeScreenshots.Build.cs --------------------------------------------------------------------------------