├── .gitignore ├── .gitmodules ├── AnimationExport.sln ├── AnimationExport ├── 1430693.ico ├── AnimationExport.csproj ├── Models │ ├── EmoteData.cs │ ├── FortniteApiResponse.cs │ ├── MappingsResponse.cs │ └── MontageModel.cs ├── Program.cs └── Utils │ ├── Constants.cs │ ├── FileProvider.cs │ ├── FortniteUtils.cs │ ├── Globals.cs │ └── Logger.cs └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xkaede/FortniteEmoteExporter/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xkaede/FortniteEmoteExporter/HEAD/.gitmodules -------------------------------------------------------------------------------- /AnimationExport.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xkaede/FortniteEmoteExporter/HEAD/AnimationExport.sln -------------------------------------------------------------------------------- /AnimationExport/1430693.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xkaede/FortniteEmoteExporter/HEAD/AnimationExport/1430693.ico -------------------------------------------------------------------------------- /AnimationExport/AnimationExport.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xkaede/FortniteEmoteExporter/HEAD/AnimationExport/AnimationExport.csproj -------------------------------------------------------------------------------- /AnimationExport/Models/EmoteData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xkaede/FortniteEmoteExporter/HEAD/AnimationExport/Models/EmoteData.cs -------------------------------------------------------------------------------- /AnimationExport/Models/FortniteApiResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xkaede/FortniteEmoteExporter/HEAD/AnimationExport/Models/FortniteApiResponse.cs -------------------------------------------------------------------------------- /AnimationExport/Models/MappingsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xkaede/FortniteEmoteExporter/HEAD/AnimationExport/Models/MappingsResponse.cs -------------------------------------------------------------------------------- /AnimationExport/Models/MontageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xkaede/FortniteEmoteExporter/HEAD/AnimationExport/Models/MontageModel.cs -------------------------------------------------------------------------------- /AnimationExport/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xkaede/FortniteEmoteExporter/HEAD/AnimationExport/Program.cs -------------------------------------------------------------------------------- /AnimationExport/Utils/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xkaede/FortniteEmoteExporter/HEAD/AnimationExport/Utils/Constants.cs -------------------------------------------------------------------------------- /AnimationExport/Utils/FileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xkaede/FortniteEmoteExporter/HEAD/AnimationExport/Utils/FileProvider.cs -------------------------------------------------------------------------------- /AnimationExport/Utils/FortniteUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xkaede/FortniteEmoteExporter/HEAD/AnimationExport/Utils/FortniteUtils.cs -------------------------------------------------------------------------------- /AnimationExport/Utils/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xkaede/FortniteEmoteExporter/HEAD/AnimationExport/Utils/Globals.cs -------------------------------------------------------------------------------- /AnimationExport/Utils/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xkaede/FortniteEmoteExporter/HEAD/AnimationExport/Utils/Logger.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xkaede/FortniteEmoteExporter/HEAD/README.md --------------------------------------------------------------------------------