├── .gitignore ├── Content └── UI │ ├── BP_TopicHyperlink.uasset │ ├── DialogRichText.uasset │ ├── Fonts │ ├── LICENSE.txt │ ├── Roboto-Black.ttf │ ├── Roboto-Black.uasset │ ├── Roboto-BlackItalic.ttf │ ├── Roboto-BlackItalic.uasset │ ├── Roboto-Bold.ttf │ ├── Roboto-Bold.uasset │ ├── Roboto-BoldItalic.ttf │ ├── Roboto-BoldItalic.uasset │ ├── Roboto-Italic.ttf │ ├── Roboto-Italic.uasset │ ├── Roboto-Light.ttf │ ├── Roboto-Light.uasset │ ├── Roboto-LightItalic.ttf │ ├── Roboto-LightItalic.uasset │ ├── Roboto-Medium.ttf │ ├── Roboto-Medium.uasset │ ├── Roboto-MediumItalic.ttf │ ├── Roboto-MediumItalic.uasset │ ├── Roboto-Regular.ttf │ ├── Roboto-Regular.uasset │ ├── Roboto-Thin.ttf │ ├── Roboto-Thin.uasset │ ├── Roboto-ThinItalic.ttf │ ├── Roboto-ThinItalic.uasset │ └── RobotoFont.uasset │ ├── QuestJournal │ ├── UI_QuestButton.uasset │ ├── UI_QuestDetails.uasset │ ├── UI_QuestJournal.uasset │ ├── UI_QuestList.uasset │ ├── UI_QuestStep.uasset │ └── UI_QuestText.uasset │ ├── UI_DialogFooter.uasset │ ├── UI_DialogGive.uasset │ ├── UI_DialogHeader.uasset │ ├── UI_DialogText.uasset │ ├── UI_DialogTextChunk.uasset │ ├── UI_DialogTopic.uasset │ ├── UI_DialogTopicButton.uasset │ └── UI_DialogWindow.uasset ├── DialogAndQuestPlugin.uplugin ├── Doc └── Images │ ├── DialogWindow.png │ └── QuestJournal.png ├── LICENSE ├── README.md ├── Resources └── Icon128.png └── Source └── DialogAndQuestPlugin ├── DialogAndQuestPlugin.Build.cs ├── Private ├── Actors │ └── AreaQuestValidator.cpp ├── Components │ ├── DialogComponent.cpp │ ├── DialogMainComponent.cpp │ ├── QuestBearerComponent.cpp │ ├── QuestGiverComponent.cpp │ └── QuestMainComponent.cpp ├── Dialog │ └── DialogData.cpp ├── DialogAndQuestPlugin.cpp ├── Interfaces │ ├── DialogDisplayInterface.cpp │ ├── DialogGameModeInterface.cpp │ ├── DialogInterface.cpp │ ├── QuestBearerInterface.cpp │ └── QuestGiverInterface.cpp ├── Misc │ └── DialogAndQuestPluginHelper.cpp ├── Quest │ └── QuestData.cpp └── UI │ ├── DialogBankWidget.cpp │ ├── DialogFooterWidget.cpp │ ├── DialogGiveWidget.cpp │ ├── DialogHeaderWidget.cpp │ ├── DialogTextChunkWidget.cpp │ ├── DialogTextWidget.cpp │ ├── DialogTopicButtonWidget.cpp │ ├── DialogTopicWidget.cpp │ ├── DialogTradeWidget.cpp │ ├── DialogTrainWidget.cpp │ ├── DialogWindow.cpp │ ├── GenericScreenMessage.cpp │ ├── QuestJournal │ ├── QuestJournalButtonWidget.cpp │ ├── QuestJournalDetailsWidget.cpp │ ├── QuestJournalListWidget.cpp │ ├── QuestJournalStepWidget.cpp │ └── QuestJournalWindow.cpp │ └── RichInlineHyperlinkDecorator.cpp └── Public ├── Actors └── AreaQuestValidator.h ├── Components ├── DialogComponent.h ├── DialogMainComponent.h ├── QuestBearerComponent.h ├── QuestGiverComponent.h └── QuestMainComponent.h ├── Dialog └── DialogData.h ├── DialogAndQuestPlugin.h ├── Interfaces ├── DialogDisplayInterface.h ├── DialogGameModeInterface.h ├── DialogInterface.h ├── QuestBearerInterface.h └── QuestGiverInterface.h ├── Misc └── DialogAndQuestPluginHelper.h ├── Quest └── QuestData.h └── UI ├── DialogBankWidget.h ├── DialogFooterWidget.h ├── DialogGiveWidget.h ├── DialogHeaderWidget.h ├── DialogTextChunkWidget.h ├── DialogTextWidget.h ├── DialogTopicButtonWidget.h ├── DialogTopicWidget.h ├── DialogTradeWidget.h ├── DialogTrainWidget.h ├── DialogWindow.h ├── GenericScreenMessage.h ├── QuestJournal ├── QuestJournalButtonWidget.h ├── QuestJournalDetailsWidget.h ├── QuestJournalListWidget.h ├── QuestJournalStepWidget.h └── QuestJournalWindow.h └── RichInlineHyperlinkDecorator.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /Content/UI/BP_TopicHyperlink.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/BP_TopicHyperlink.uasset -------------------------------------------------------------------------------- /Content/UI/DialogRichText.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/DialogRichText.uasset -------------------------------------------------------------------------------- /Content/UI/Fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/Fonts/LICENSE.txt -------------------------------------------------------------------------------- /Content/UI/Fonts/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/Fonts/Roboto-Black.ttf -------------------------------------------------------------------------------- /Content/UI/Fonts/Roboto-Black.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/Fonts/Roboto-Black.uasset -------------------------------------------------------------------------------- /Content/UI/Fonts/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/Fonts/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /Content/UI/Fonts/Roboto-BlackItalic.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/Fonts/Roboto-BlackItalic.uasset -------------------------------------------------------------------------------- /Content/UI/Fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/Fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /Content/UI/Fonts/Roboto-Bold.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/Fonts/Roboto-Bold.uasset -------------------------------------------------------------------------------- /Content/UI/Fonts/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/Fonts/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /Content/UI/Fonts/Roboto-BoldItalic.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/Fonts/Roboto-BoldItalic.uasset -------------------------------------------------------------------------------- /Content/UI/Fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/Fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /Content/UI/Fonts/Roboto-Italic.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/Fonts/Roboto-Italic.uasset -------------------------------------------------------------------------------- /Content/UI/Fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/Fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /Content/UI/Fonts/Roboto-Light.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/Fonts/Roboto-Light.uasset -------------------------------------------------------------------------------- /Content/UI/Fonts/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/Fonts/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /Content/UI/Fonts/Roboto-LightItalic.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/Fonts/Roboto-LightItalic.uasset -------------------------------------------------------------------------------- /Content/UI/Fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/Fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /Content/UI/Fonts/Roboto-Medium.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/Fonts/Roboto-Medium.uasset -------------------------------------------------------------------------------- /Content/UI/Fonts/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/Fonts/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /Content/UI/Fonts/Roboto-MediumItalic.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/Fonts/Roboto-MediumItalic.uasset -------------------------------------------------------------------------------- /Content/UI/Fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/Fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /Content/UI/Fonts/Roboto-Regular.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/Fonts/Roboto-Regular.uasset -------------------------------------------------------------------------------- /Content/UI/Fonts/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/Fonts/Roboto-Thin.ttf -------------------------------------------------------------------------------- /Content/UI/Fonts/Roboto-Thin.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/Fonts/Roboto-Thin.uasset -------------------------------------------------------------------------------- /Content/UI/Fonts/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/Fonts/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /Content/UI/Fonts/Roboto-ThinItalic.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/Fonts/Roboto-ThinItalic.uasset -------------------------------------------------------------------------------- /Content/UI/Fonts/RobotoFont.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/Fonts/RobotoFont.uasset -------------------------------------------------------------------------------- /Content/UI/QuestJournal/UI_QuestButton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/QuestJournal/UI_QuestButton.uasset -------------------------------------------------------------------------------- /Content/UI/QuestJournal/UI_QuestDetails.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/QuestJournal/UI_QuestDetails.uasset -------------------------------------------------------------------------------- /Content/UI/QuestJournal/UI_QuestJournal.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/QuestJournal/UI_QuestJournal.uasset -------------------------------------------------------------------------------- /Content/UI/QuestJournal/UI_QuestList.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/QuestJournal/UI_QuestList.uasset -------------------------------------------------------------------------------- /Content/UI/QuestJournal/UI_QuestStep.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/QuestJournal/UI_QuestStep.uasset -------------------------------------------------------------------------------- /Content/UI/QuestJournal/UI_QuestText.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/QuestJournal/UI_QuestText.uasset -------------------------------------------------------------------------------- /Content/UI/UI_DialogFooter.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/UI_DialogFooter.uasset -------------------------------------------------------------------------------- /Content/UI/UI_DialogGive.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/UI_DialogGive.uasset -------------------------------------------------------------------------------- /Content/UI/UI_DialogHeader.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/UI_DialogHeader.uasset -------------------------------------------------------------------------------- /Content/UI/UI_DialogText.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/UI_DialogText.uasset -------------------------------------------------------------------------------- /Content/UI/UI_DialogTextChunk.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/UI_DialogTextChunk.uasset -------------------------------------------------------------------------------- /Content/UI/UI_DialogTopic.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/UI_DialogTopic.uasset -------------------------------------------------------------------------------- /Content/UI/UI_DialogTopicButton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/UI_DialogTopicButton.uasset -------------------------------------------------------------------------------- /Content/UI/UI_DialogWindow.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Content/UI/UI_DialogWindow.uasset -------------------------------------------------------------------------------- /DialogAndQuestPlugin.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/DialogAndQuestPlugin.uplugin -------------------------------------------------------------------------------- /Doc/Images/DialogWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Doc/Images/DialogWindow.png -------------------------------------------------------------------------------- /Doc/Images/QuestJournal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Doc/Images/QuestJournal.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/DialogAndQuestPlugin.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/DialogAndQuestPlugin.Build.cs -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/Actors/AreaQuestValidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/Actors/AreaQuestValidator.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/Components/DialogComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/Components/DialogComponent.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/Components/DialogMainComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/Components/DialogMainComponent.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/Components/QuestBearerComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/Components/QuestBearerComponent.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/Components/QuestGiverComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/Components/QuestGiverComponent.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/Components/QuestMainComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/Components/QuestMainComponent.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/Dialog/DialogData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/Dialog/DialogData.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/DialogAndQuestPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/DialogAndQuestPlugin.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/Interfaces/DialogDisplayInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/Interfaces/DialogDisplayInterface.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/Interfaces/DialogGameModeInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/Interfaces/DialogGameModeInterface.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/Interfaces/DialogInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/Interfaces/DialogInterface.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/Interfaces/QuestBearerInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/Interfaces/QuestBearerInterface.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/Interfaces/QuestGiverInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/Interfaces/QuestGiverInterface.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/Misc/DialogAndQuestPluginHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/Misc/DialogAndQuestPluginHelper.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/Quest/QuestData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/Quest/QuestData.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/UI/DialogBankWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/UI/DialogBankWidget.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/UI/DialogFooterWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/UI/DialogFooterWidget.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/UI/DialogGiveWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/UI/DialogGiveWidget.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/UI/DialogHeaderWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/UI/DialogHeaderWidget.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/UI/DialogTextChunkWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/UI/DialogTextChunkWidget.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/UI/DialogTextWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/UI/DialogTextWidget.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/UI/DialogTopicButtonWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/UI/DialogTopicButtonWidget.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/UI/DialogTopicWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/UI/DialogTopicWidget.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/UI/DialogTradeWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/UI/DialogTradeWidget.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/UI/DialogTrainWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/UI/DialogTrainWidget.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/UI/DialogWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/UI/DialogWindow.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/UI/GenericScreenMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/UI/GenericScreenMessage.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/UI/QuestJournal/QuestJournalButtonWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/UI/QuestJournal/QuestJournalButtonWidget.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/UI/QuestJournal/QuestJournalDetailsWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/UI/QuestJournal/QuestJournalDetailsWidget.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/UI/QuestJournal/QuestJournalListWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/UI/QuestJournal/QuestJournalListWidget.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/UI/QuestJournal/QuestJournalStepWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/UI/QuestJournal/QuestJournalStepWidget.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/UI/QuestJournal/QuestJournalWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/UI/QuestJournal/QuestJournalWindow.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Private/UI/RichInlineHyperlinkDecorator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Private/UI/RichInlineHyperlinkDecorator.cpp -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/Actors/AreaQuestValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/Actors/AreaQuestValidator.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/Components/DialogComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/Components/DialogComponent.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/Components/DialogMainComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/Components/DialogMainComponent.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/Components/QuestBearerComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/Components/QuestBearerComponent.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/Components/QuestGiverComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/Components/QuestGiverComponent.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/Components/QuestMainComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/Components/QuestMainComponent.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/Dialog/DialogData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/Dialog/DialogData.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/DialogAndQuestPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/DialogAndQuestPlugin.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/Interfaces/DialogDisplayInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/Interfaces/DialogDisplayInterface.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/Interfaces/DialogGameModeInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/Interfaces/DialogGameModeInterface.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/Interfaces/DialogInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/Interfaces/DialogInterface.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/Interfaces/QuestBearerInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/Interfaces/QuestBearerInterface.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/Interfaces/QuestGiverInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/Interfaces/QuestGiverInterface.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/Misc/DialogAndQuestPluginHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/Misc/DialogAndQuestPluginHelper.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/Quest/QuestData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/Quest/QuestData.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/UI/DialogBankWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/UI/DialogBankWidget.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/UI/DialogFooterWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/UI/DialogFooterWidget.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/UI/DialogGiveWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/UI/DialogGiveWidget.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/UI/DialogHeaderWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/UI/DialogHeaderWidget.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/UI/DialogTextChunkWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/UI/DialogTextChunkWidget.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/UI/DialogTextWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/UI/DialogTextWidget.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/UI/DialogTopicButtonWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/UI/DialogTopicButtonWidget.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/UI/DialogTopicWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/UI/DialogTopicWidget.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/UI/DialogTradeWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/UI/DialogTradeWidget.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/UI/DialogTrainWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/UI/DialogTrainWidget.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/UI/DialogWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/UI/DialogWindow.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/UI/GenericScreenMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/UI/GenericScreenMessage.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/UI/QuestJournal/QuestJournalButtonWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/UI/QuestJournal/QuestJournalButtonWidget.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/UI/QuestJournal/QuestJournalDetailsWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/UI/QuestJournal/QuestJournalDetailsWidget.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/UI/QuestJournal/QuestJournalListWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/UI/QuestJournal/QuestJournalListWidget.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/UI/QuestJournal/QuestJournalStepWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/UI/QuestJournal/QuestJournalStepWidget.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/UI/QuestJournal/QuestJournalWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/UI/QuestJournal/QuestJournalWindow.h -------------------------------------------------------------------------------- /Source/DialogAndQuestPlugin/Public/UI/RichInlineHyperlinkDecorator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synock/UE5DialogAndQuestPlugin/HEAD/Source/DialogAndQuestPlugin/Public/UI/RichInlineHyperlinkDecorator.h --------------------------------------------------------------------------------