diff --git a/nada.h b/nada.h new file mode 100644 index 0000000..b0b4100 --- /dev/null +++ b/nada.h @@ -0,0 +1,12 @@ +#ifndef BOOCRAP_H +#define BOOCRAP_H + + +class boocrap +{ + public: + boocrap(); + +}; + +#endif // BOOCRAP_H diff --git a/setup.py b/setup.py index 33c5a13..6b146ec 100644 --- a/setup.py +++ b/setup.py @@ -10,15 +10,16 @@ base = None if sys.platform == "win32": base = "Win32GUI" - +# pathjoiner pygame_py_file = os.path.join('spaceshooter', 'spaceShooter.py') ## The image and sound files are added manually into the zip file ## A fix for this would be released +## Fix not released yet. Please wait. setup( name = "Space Shooter", version = "0.0.2", description = "classic retro game made using pygame", options = {"build_exe": build_exe_options}, executables = [Executable(pygame_py_file, base=base)] -) \ No newline at end of file +)