2026-03-17 13:16:48 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "CoreMinimal.h"
|
2026-04-07 22:04:44 -04:00
|
|
|
#include "WingBasics.h"
|
2026-03-26 16:17:06 -04:00
|
|
|
#include "WingManual.h"
|
2026-04-08 01:48:49 -04:00
|
|
|
#include "WingServer.h"
|
2026-04-04 02:58:23 -04:00
|
|
|
#include "Documentation_Manual.generated.h"
|
2026-03-17 13:16:48 -04:00
|
|
|
|
|
|
|
|
UCLASS()
|
2026-04-04 02:58:23 -04:00
|
|
|
class UWing_Documentation_Manual : public UWingHandler
|
2026-03-17 13:16:48 -04:00
|
|
|
{
|
|
|
|
|
GENERATED_BODY()
|
|
|
|
|
|
|
|
|
|
public:
|
2026-04-13 21:33:02 -04:00
|
|
|
|
2026-04-01 18:12:54 -04:00
|
|
|
virtual void Register() override
|
2026-03-17 13:16:48 -04:00
|
|
|
{
|
2026-05-16 01:49:26 -04:00
|
|
|
UWingServer::AddHandler(this, TEXT("Print the entire manual."));
|
2026-03-17 13:16:48 -04:00
|
|
|
}
|
|
|
|
|
virtual void Handle() override
|
|
|
|
|
{
|
2026-05-16 01:49:26 -04:00
|
|
|
UWingManualSections::FetcherPaths();
|
|
|
|
|
UWingManualSections::ExpressingTypes();
|
|
|
|
|
UWingManualSections::VariableDeclarations();
|
|
|
|
|
UWingManualSections::EscapeSequencesInFNames();
|
|
|
|
|
UWingManualSections::MaterialEditing();
|
|
|
|
|
UWingManualSections::NodeContextMenus();
|
|
|
|
|
UWingManualSections::VariableGettersAndSetters();
|
|
|
|
|
UWingManualSections::BestPerformance();
|
|
|
|
|
UWingManualSections::ImportantCommands();
|
2026-03-17 13:16:48 -04:00
|
|
|
}
|
|
|
|
|
};
|