├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── README.md ├── VoiceDef.s ├── m4a2s.sln ├── m4a2s ├── Entity.cs ├── Index.cs ├── Program.cs ├── Rom.cs ├── Song.cs ├── Songtable.cs ├── Tables.cs ├── Voicegroup.cs ├── Wave.cs └── m4a2s.csproj └── sappy (by Bregalad).txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipatix/m4a2s/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipatix/m4a2s/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipatix/m4a2s/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipatix/m4a2s/HEAD/README.md -------------------------------------------------------------------------------- /VoiceDef.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipatix/m4a2s/HEAD/VoiceDef.s -------------------------------------------------------------------------------- /m4a2s.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipatix/m4a2s/HEAD/m4a2s.sln -------------------------------------------------------------------------------- /m4a2s/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipatix/m4a2s/HEAD/m4a2s/Entity.cs -------------------------------------------------------------------------------- /m4a2s/Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipatix/m4a2s/HEAD/m4a2s/Index.cs -------------------------------------------------------------------------------- /m4a2s/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipatix/m4a2s/HEAD/m4a2s/Program.cs -------------------------------------------------------------------------------- /m4a2s/Rom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipatix/m4a2s/HEAD/m4a2s/Rom.cs -------------------------------------------------------------------------------- /m4a2s/Song.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipatix/m4a2s/HEAD/m4a2s/Song.cs -------------------------------------------------------------------------------- /m4a2s/Songtable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipatix/m4a2s/HEAD/m4a2s/Songtable.cs -------------------------------------------------------------------------------- /m4a2s/Tables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipatix/m4a2s/HEAD/m4a2s/Tables.cs -------------------------------------------------------------------------------- /m4a2s/Voicegroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipatix/m4a2s/HEAD/m4a2s/Voicegroup.cs -------------------------------------------------------------------------------- /m4a2s/Wave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipatix/m4a2s/HEAD/m4a2s/Wave.cs -------------------------------------------------------------------------------- /m4a2s/m4a2s.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipatix/m4a2s/HEAD/m4a2s/m4a2s.csproj -------------------------------------------------------------------------------- /sappy (by Bregalad).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipatix/m4a2s/HEAD/sappy (by Bregalad).txt --------------------------------------------------------------------------------