mirror of
https://gitlab.com/Nanolx/qwad.git
synced 2024-11-13 06:15:06 +01:00
10 lines
222 B
Python
10 lines
222 B
Python
from savedata import *
|
|
|
|
save = Savegame('/home/giuseppe/Scrivania/data' + str(4) + '.bin')
|
|
save.analyzeHeader()
|
|
print '%s' % save
|
|
save.getBanner()
|
|
for i in range(save.getIconsCount()):
|
|
save.getIcon(i)
|
|
save.extractFiles()
|