├── .gitattributes ├── .gitignore ├── BootAnimationCreator.sln └── BootAnimationCreator ├── App.config ├── BootAnimationCreator.csproj ├── Lib └── Crc32.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Resource_Files ├── template.bin ├── x360_imports.idc ├── xboxIcon.ico ├── xboxTheme.png └── xextool.exe ├── Theme └── CarbonFiberTheme.cs └── xboxIcon.ico /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOnlyLordVirus/Xbox360BootAnimationCreator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOnlyLordVirus/Xbox360BootAnimationCreator/HEAD/.gitignore -------------------------------------------------------------------------------- /BootAnimationCreator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOnlyLordVirus/Xbox360BootAnimationCreator/HEAD/BootAnimationCreator.sln -------------------------------------------------------------------------------- /BootAnimationCreator/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOnlyLordVirus/Xbox360BootAnimationCreator/HEAD/BootAnimationCreator/App.config -------------------------------------------------------------------------------- /BootAnimationCreator/BootAnimationCreator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOnlyLordVirus/Xbox360BootAnimationCreator/HEAD/BootAnimationCreator/BootAnimationCreator.csproj -------------------------------------------------------------------------------- /BootAnimationCreator/Lib/Crc32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOnlyLordVirus/Xbox360BootAnimationCreator/HEAD/BootAnimationCreator/Lib/Crc32.cs -------------------------------------------------------------------------------- /BootAnimationCreator/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOnlyLordVirus/Xbox360BootAnimationCreator/HEAD/BootAnimationCreator/MainForm.Designer.cs -------------------------------------------------------------------------------- /BootAnimationCreator/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOnlyLordVirus/Xbox360BootAnimationCreator/HEAD/BootAnimationCreator/MainForm.cs -------------------------------------------------------------------------------- /BootAnimationCreator/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOnlyLordVirus/Xbox360BootAnimationCreator/HEAD/BootAnimationCreator/MainForm.resx -------------------------------------------------------------------------------- /BootAnimationCreator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOnlyLordVirus/Xbox360BootAnimationCreator/HEAD/BootAnimationCreator/Program.cs -------------------------------------------------------------------------------- /BootAnimationCreator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOnlyLordVirus/Xbox360BootAnimationCreator/HEAD/BootAnimationCreator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BootAnimationCreator/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOnlyLordVirus/Xbox360BootAnimationCreator/HEAD/BootAnimationCreator/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /BootAnimationCreator/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOnlyLordVirus/Xbox360BootAnimationCreator/HEAD/BootAnimationCreator/Properties/Resources.resx -------------------------------------------------------------------------------- /BootAnimationCreator/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOnlyLordVirus/Xbox360BootAnimationCreator/HEAD/BootAnimationCreator/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /BootAnimationCreator/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOnlyLordVirus/Xbox360BootAnimationCreator/HEAD/BootAnimationCreator/Properties/Settings.settings -------------------------------------------------------------------------------- /BootAnimationCreator/Resource_Files/template.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOnlyLordVirus/Xbox360BootAnimationCreator/HEAD/BootAnimationCreator/Resource_Files/template.bin -------------------------------------------------------------------------------- /BootAnimationCreator/Resource_Files/x360_imports.idc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOnlyLordVirus/Xbox360BootAnimationCreator/HEAD/BootAnimationCreator/Resource_Files/x360_imports.idc -------------------------------------------------------------------------------- /BootAnimationCreator/Resource_Files/xboxIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOnlyLordVirus/Xbox360BootAnimationCreator/HEAD/BootAnimationCreator/Resource_Files/xboxIcon.ico -------------------------------------------------------------------------------- /BootAnimationCreator/Resource_Files/xboxTheme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOnlyLordVirus/Xbox360BootAnimationCreator/HEAD/BootAnimationCreator/Resource_Files/xboxTheme.png -------------------------------------------------------------------------------- /BootAnimationCreator/Resource_Files/xextool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOnlyLordVirus/Xbox360BootAnimationCreator/HEAD/BootAnimationCreator/Resource_Files/xextool.exe -------------------------------------------------------------------------------- /BootAnimationCreator/Theme/CarbonFiberTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOnlyLordVirus/Xbox360BootAnimationCreator/HEAD/BootAnimationCreator/Theme/CarbonFiberTheme.cs -------------------------------------------------------------------------------- /BootAnimationCreator/xboxIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOnlyLordVirus/Xbox360BootAnimationCreator/HEAD/BootAnimationCreator/xboxIcon.ico --------------------------------------------------------------------------------