├── .gitignore ├── LICENSE ├── MgsFontGenDX.sln ├── README.md ├── cc ├── Charset.utf8 ├── CompoundCharacters.tbl ├── README.txt └── generate.cmd ├── chlcc ├── Charset.utf8 ├── CompoundCharacters.tbl └── generate.cmd ├── chn ├── Charset.utf8 ├── CompoundCharacters.tbl └── generate.cmd ├── sg ├── Charset.utf8 ├── CompoundCharacters.tbl └── generate.cmd ├── sglbp ├── Charset.utf8 ├── CompoundCharacters.tbl └── generate.cmd ├── sgmde ├── Charset.utf8 ├── CompoundCharacters.tbl └── generate.cmd ├── src ├── App.config ├── MgsFontGenDX.csproj ├── OutlineRenderer.cs ├── Program.cs ├── RendererBase.cs └── TextRenderer.cs └── zero ├── Charset.utf8 ├── CompoundCharacters.tbl └── generate.cmd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/LICENSE -------------------------------------------------------------------------------- /MgsFontGenDX.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/MgsFontGenDX.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/README.md -------------------------------------------------------------------------------- /cc/Charset.utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/cc/Charset.utf8 -------------------------------------------------------------------------------- /cc/CompoundCharacters.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/cc/CompoundCharacters.tbl -------------------------------------------------------------------------------- /cc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/cc/README.txt -------------------------------------------------------------------------------- /cc/generate.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/cc/generate.cmd -------------------------------------------------------------------------------- /chlcc/Charset.utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/chlcc/Charset.utf8 -------------------------------------------------------------------------------- /chlcc/CompoundCharacters.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/chlcc/CompoundCharacters.tbl -------------------------------------------------------------------------------- /chlcc/generate.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/chlcc/generate.cmd -------------------------------------------------------------------------------- /chn/Charset.utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/chn/Charset.utf8 -------------------------------------------------------------------------------- /chn/CompoundCharacters.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/chn/CompoundCharacters.tbl -------------------------------------------------------------------------------- /chn/generate.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/chn/generate.cmd -------------------------------------------------------------------------------- /sg/Charset.utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/sg/Charset.utf8 -------------------------------------------------------------------------------- /sg/CompoundCharacters.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/sg/CompoundCharacters.tbl -------------------------------------------------------------------------------- /sg/generate.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/sg/generate.cmd -------------------------------------------------------------------------------- /sglbp/Charset.utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/sglbp/Charset.utf8 -------------------------------------------------------------------------------- /sglbp/CompoundCharacters.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/sglbp/CompoundCharacters.tbl -------------------------------------------------------------------------------- /sglbp/generate.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/sglbp/generate.cmd -------------------------------------------------------------------------------- /sgmde/Charset.utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/sgmde/Charset.utf8 -------------------------------------------------------------------------------- /sgmde/CompoundCharacters.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/sgmde/CompoundCharacters.tbl -------------------------------------------------------------------------------- /sgmde/generate.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/sgmde/generate.cmd -------------------------------------------------------------------------------- /src/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/src/App.config -------------------------------------------------------------------------------- /src/MgsFontGenDX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/src/MgsFontGenDX.csproj -------------------------------------------------------------------------------- /src/OutlineRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/src/OutlineRenderer.cs -------------------------------------------------------------------------------- /src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/src/Program.cs -------------------------------------------------------------------------------- /src/RendererBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/src/RendererBase.cs -------------------------------------------------------------------------------- /src/TextRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/src/TextRenderer.cs -------------------------------------------------------------------------------- /zero/Charset.utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/zero/Charset.utf8 -------------------------------------------------------------------------------- /zero/CompoundCharacters.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/zero/CompoundCharacters.tbl -------------------------------------------------------------------------------- /zero/generate.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/mgsfontgen-dx/HEAD/zero/generate.cmd --------------------------------------------------------------------------------