├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── MultiMap.uplugin ├── README.md ├── Resources └── LevelRelations_64x.png └── Source ├── MultiMap ├── MultiMap.Build.cs ├── MultiMap.cpp ├── MultiMap.h ├── Private │ ├── Assets │ │ └── LevelRelations.cpp │ └── MultiMapGameInstance.cpp └── Public │ ├── Assets │ └── LevelRelations.h │ └── MultiMapGameInstance.h └── MultiMapED ├── MultiMapED.Build.cs ├── MultiMapED.cpp ├── MultiMapED.h └── Private └── LevelRelations ├── LevelRelations.cpp └── LevelRelations_Factory.h /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TehnoMag/Unreal-Engine-4-Multi-Map-Plugin/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TehnoMag/Unreal-Engine-4-Multi-Map-Plugin/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TehnoMag/Unreal-Engine-4-Multi-Map-Plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /MultiMap.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TehnoMag/Unreal-Engine-4-Multi-Map-Plugin/HEAD/MultiMap.uplugin -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TehnoMag/Unreal-Engine-4-Multi-Map-Plugin/HEAD/README.md -------------------------------------------------------------------------------- /Resources/LevelRelations_64x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TehnoMag/Unreal-Engine-4-Multi-Map-Plugin/HEAD/Resources/LevelRelations_64x.png -------------------------------------------------------------------------------- /Source/MultiMap/MultiMap.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TehnoMag/Unreal-Engine-4-Multi-Map-Plugin/HEAD/Source/MultiMap/MultiMap.Build.cs -------------------------------------------------------------------------------- /Source/MultiMap/MultiMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TehnoMag/Unreal-Engine-4-Multi-Map-Plugin/HEAD/Source/MultiMap/MultiMap.cpp -------------------------------------------------------------------------------- /Source/MultiMap/MultiMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TehnoMag/Unreal-Engine-4-Multi-Map-Plugin/HEAD/Source/MultiMap/MultiMap.h -------------------------------------------------------------------------------- /Source/MultiMap/Private/Assets/LevelRelations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TehnoMag/Unreal-Engine-4-Multi-Map-Plugin/HEAD/Source/MultiMap/Private/Assets/LevelRelations.cpp -------------------------------------------------------------------------------- /Source/MultiMap/Private/MultiMapGameInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TehnoMag/Unreal-Engine-4-Multi-Map-Plugin/HEAD/Source/MultiMap/Private/MultiMapGameInstance.cpp -------------------------------------------------------------------------------- /Source/MultiMap/Public/Assets/LevelRelations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TehnoMag/Unreal-Engine-4-Multi-Map-Plugin/HEAD/Source/MultiMap/Public/Assets/LevelRelations.h -------------------------------------------------------------------------------- /Source/MultiMap/Public/MultiMapGameInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TehnoMag/Unreal-Engine-4-Multi-Map-Plugin/HEAD/Source/MultiMap/Public/MultiMapGameInstance.h -------------------------------------------------------------------------------- /Source/MultiMapED/MultiMapED.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TehnoMag/Unreal-Engine-4-Multi-Map-Plugin/HEAD/Source/MultiMapED/MultiMapED.Build.cs -------------------------------------------------------------------------------- /Source/MultiMapED/MultiMapED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TehnoMag/Unreal-Engine-4-Multi-Map-Plugin/HEAD/Source/MultiMapED/MultiMapED.cpp -------------------------------------------------------------------------------- /Source/MultiMapED/MultiMapED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TehnoMag/Unreal-Engine-4-Multi-Map-Plugin/HEAD/Source/MultiMapED/MultiMapED.h -------------------------------------------------------------------------------- /Source/MultiMapED/Private/LevelRelations/LevelRelations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TehnoMag/Unreal-Engine-4-Multi-Map-Plugin/HEAD/Source/MultiMapED/Private/LevelRelations/LevelRelations.cpp -------------------------------------------------------------------------------- /Source/MultiMapED/Private/LevelRelations/LevelRelations_Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TehnoMag/Unreal-Engine-4-Multi-Map-Plugin/HEAD/Source/MultiMapED/Private/LevelRelations/LevelRelations_Factory.h --------------------------------------------------------------------------------