diff options
author | B. Stack <bgstack15@gmail.com> | 2024-03-20 10:59:37 -0400 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2024-03-20 10:59:37 -0400 |
commit | ba317f1a403f3f02d2de3a7f80ee03ad0eced917 (patch) | |
tree | 832d75cb5fec16ab324e690a1c00aab34187d76b /srb.py | |
parent | simplify checksum, rearrange position bytes (diff) | |
download | srb_lib-ba317f1a403f3f02d2de3a7f80ee03ad0eced917.tar.gz srb_lib-ba317f1a403f3f02d2de3a7f80ee03ad0eced917.tar.bz2 srb_lib-ba317f1a403f3f02d2de3a7f80ee03ad0eced917.zip |
add readme
Diffstat (limited to 'srb.py')
-rwxr-xr-x | srb.py | 14 |
1 files changed, 10 insertions, 4 deletions
@@ -1,15 +1,21 @@ #!/usr/bin/env python3 +# File: srb.py +# Location: https://bgstack15.ddns.net/cgit/srb_lib +# Author: bgstack15 +# SPDX-License-Identifier: GPL-3.0-only # Startdate: 2024-03-08-6 15:28 -# File: srb_lib.py +# Title: Frontend for savegame editor for Snoopy vs. the Red Baron +# Project: srb_lib # Purpose: frontend for srb_lib # History: # Usage: # tl;dr: ./srb.py --profile 1 --unlock-everything --buy-everything "Profile 1.sav" # Reference: -# blog posts 2024-03 -# delsum from github # bgconf.py -# WORKHERE: still some confusion around the --unlock-everything --lock-everything and the levelset available levels. +# Improve: +# still some confusion around the --unlock-everything --lock-everything and the levelset available levels. +# Documentation: README.md +# Dependencies: import srb_lib, argparse, sys from srb_lib import ferror, debuglev |