Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 370 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 370 Bytes

XCom Character File Parser

This is a quick python library I cooked up for parsing character data out of the character pool files for XCOM 2

Usage

The main class for this libray is CharacterPool,

from xcfp.lib import CharacterPool

pool = CharacterPool('/path/to/file.bin'):
for char in pool.characters():
	print(char)