- Create a new class for your project by using the Add C++ Class wizard and selecting None as your parent class:
- Under the name option, use CookbookStyle and click on the Create Class button:
- Replace the code in the CookbookStyle.h file with the following code:
#pragma once#include "SlateBasics.h"#include "SlateExtras.h"class FCookbookStyle{public: static void Initialize(); static void Shutdown(); static void ReloadTextures(); static const ISlateStyle& Get(); static FName GetStyleSetName();private: static TSharedRef< class ...