diff --git a/single_file/alien_invasion.spec b/single_file/alien_invasion.spec new file mode 100644 index 0000000..900a24d --- /dev/null +++ b/single_file/alien_invasion.spec @@ -0,0 +1,33 @@ +# -*- mode: python ; coding: utf-8 -*- + +block_cipher = None + + +a = Analysis(['alien_invasion.py'], + pathex=['C:\\Users\\mario\\Desktop\\Programming\\Python\\pcc\\python_work\\alien_invasion'], + binaries=[], + datas=[('images/*','images'),('sounds/*','sounds'),('data/*','data')], + hiddenimports=[], + hookspath=[], + runtime_hooks=[], + excludes=[], + win_no_prefer_redirects=False, + win_private_assemblies=False, + cipher=block_cipher, + noarchive=False) +pyz = PYZ(a.pure, a.zipped_data, + cipher=block_cipher) +exe = EXE(pyz, + a.scripts, + a.binaries, + a.zipfiles, + a.datas, + [], + name='alien_invasion', + debug=False, + bootloader_ignore_signals=False, + strip=False, + upx=True, + upx_exclude=[], + runtime_tmpdir=None, + console=True , icon='images\\icon.ico') diff --git a/single_file/dist/alien_invasion.exe b/single_file/dist/alien_invasion.exe new file mode 100644 index 0000000..09a373e Binary files /dev/null and b/single_file/dist/alien_invasion.exe differ diff --git a/single_folder/alien_invasion.spec b/single_folder/alien_invasion.spec new file mode 100644 index 0000000..fc0ef3e --- /dev/null +++ b/single_folder/alien_invasion.spec @@ -0,0 +1,37 @@ +# -*- mode: python ; coding: utf-8 -*- + +block_cipher = None + + +a = Analysis(['alien_invasion.py'], + pathex=['C:\\Users\\mario\\Desktop\\Programming\\Python\\pcc\\python_work\\alien_invasion'], + binaries=[], + datas=[('images/*','images'),('sounds/*','sounds'),('data/*','data')], + hiddenimports=[], + hookspath=[], + runtime_hooks=[], + excludes=[], + win_no_prefer_redirects=False, + win_private_assemblies=False, + cipher=block_cipher, + noarchive=False) +pyz = PYZ(a.pure, a.zipped_data, + cipher=block_cipher) +exe = EXE(pyz, + a.scripts, + [], + exclude_binaries=True, + name='alien_invasion', + debug=False, + bootloader_ignore_signals=False, + strip=False, + upx=True, + console=True ) +coll = COLLECT(exe, + a.binaries, + a.zipfiles, + a.datas, + strip=False, + upx=True, + upx_exclude=[], + name='alien_invasion') diff --git a/single_folder/dist/alien_invasion.zip b/single_folder/dist/alien_invasion.zip new file mode 100644 index 0000000..1ebb755 Binary files /dev/null and b/single_folder/dist/alien_invasion.zip differ diff --git a/single_folder/dist/alien_invasion/Include/pyconfig.h b/single_folder/dist/alien_invasion/Include/pyconfig.h new file mode 100644 index 0000000..6e33f12 --- /dev/null +++ b/single_folder/dist/alien_invasion/Include/pyconfig.h @@ -0,0 +1,680 @@ +#ifndef Py_CONFIG_H +#define Py_CONFIG_H + +/* pyconfig.h. NOT Generated automatically by configure. + +This is a manually maintained version used for the Watcom, +Borland and Microsoft Visual C++ compilers. It is a +standard part of the Python distribution. + +WINDOWS DEFINES: +The code specific to Windows should be wrapped around one of +the following #defines + +MS_WIN64 - Code specific to the MS Win64 API +MS_WIN32 - Code specific to the MS Win32 (and Win64) API (obsolete, this covers all supported APIs) +MS_WINDOWS - Code specific to Windows, but all versions. +Py_ENABLE_SHARED - Code if the Python core is built as a DLL. + +Also note that neither "_M_IX86" or "_MSC_VER" should be used for +any purpose other than "Windows Intel x86 specific" and "Microsoft +compiler specific". Therefore, these should be very rare. + + +NOTE: The following symbols are deprecated: +NT, USE_DL_EXPORT, USE_DL_IMPORT, DL_EXPORT, DL_IMPORT +MS_CORE_DLL. + +WIN32 is still required for the locale module. + +*/ + +/* Deprecated USE_DL_EXPORT macro - please use Py_BUILD_CORE */ +#ifdef USE_DL_EXPORT +# define Py_BUILD_CORE +#endif /* USE_DL_EXPORT */ + +/* Visual Studio 2005 introduces deprecation warnings for + "insecure" and POSIX functions. The insecure functions should + be replaced by *_s versions (according to Microsoft); the + POSIX functions by _* versions (which, according to Microsoft, + would be ISO C conforming). Neither renaming is feasible, so + we just silence the warnings. */ + +#ifndef _CRT_SECURE_NO_DEPRECATE +#define _CRT_SECURE_NO_DEPRECATE 1 +#endif +#ifndef _CRT_NONSTDC_NO_DEPRECATE +#define _CRT_NONSTDC_NO_DEPRECATE 1 +#endif + +#define HAVE_IO_H +#define HAVE_SYS_UTIME_H +#define HAVE_TEMPNAM +#define HAVE_TMPFILE +#define HAVE_TMPNAM +#define HAVE_CLOCK +#define HAVE_STRERROR + +#include + +#define HAVE_HYPOT +#define HAVE_STRFTIME +#define DONT_HAVE_SIG_ALARM +#define DONT_HAVE_SIG_PAUSE +#define LONG_BIT 32 +#define WORD_BIT 32 + +#define MS_WIN32 /* only support win32 and greater. */ +#define MS_WINDOWS +#ifndef PYTHONPATH +# define PYTHONPATH L".\\DLLs;.\\lib" +#endif +#define NT_THREADS +#define WITH_THREAD +#ifndef NETSCAPE_PI +#define USE_SOCKET +#endif + + +/* Compiler specific defines */ + +/* ------------------------------------------------------------------------*/ +/* Microsoft C defines _MSC_VER */ +#ifdef _MSC_VER + +/* We want COMPILER to expand to a string containing _MSC_VER's *value*. + * This is horridly tricky, because the stringization operator only works + * on macro arguments, and doesn't evaluate macros passed *as* arguments. + * Attempts simpler than the following appear doomed to produce "_MSC_VER" + * literally in the string. + */ +#define _Py_PASTE_VERSION(SUFFIX) \ + ("[MSC v." _Py_STRINGIZE(_MSC_VER) " " SUFFIX "]") +/* e.g., this produces, after compile-time string catenation, + * ("[MSC v.1200 32 bit (Intel)]") + * + * _Py_STRINGIZE(_MSC_VER) expands to + * _Py_STRINGIZE1((_MSC_VER)) expands to + * _Py_STRINGIZE2(_MSC_VER) but as this call is the result of token-pasting + * it's scanned again for macros and so further expands to (under MSVC 6) + * _Py_STRINGIZE2(1200) which then expands to + * "1200" + */ +#define _Py_STRINGIZE(X) _Py_STRINGIZE1((X)) +#define _Py_STRINGIZE1(X) _Py_STRINGIZE2 ## X +#define _Py_STRINGIZE2(X) #X + +/* MSVC defines _WINxx to differentiate the windows platform types + + Note that for compatibility reasons _WIN32 is defined on Win32 + *and* on Win64. For the same reasons, in Python, MS_WIN32 is + defined on Win32 *and* Win64. Win32 only code must therefore be + guarded as follows: + #if defined(MS_WIN32) && !defined(MS_WIN64) +*/ +#ifdef _WIN64 +#define MS_WIN64 +#endif + +/* set the COMPILER */ +#ifdef MS_WIN64 +#if defined(_M_X64) || defined(_M_AMD64) +#if defined(__INTEL_COMPILER) +#define COMPILER ("[ICC v." _Py_STRINGIZE(__INTEL_COMPILER) " 64 bit (amd64) with MSC v." _Py_STRINGIZE(_MSC_VER) " CRT]") +#else +#define COMPILER _Py_PASTE_VERSION("64 bit (AMD64)") +#endif /* __INTEL_COMPILER */ +#define PYD_PLATFORM_TAG "win_amd64" +#else +#define COMPILER _Py_PASTE_VERSION("64 bit (Unknown)") +#endif +#endif /* MS_WIN64 */ + +/* set the version macros for the windows headers */ +/* Python 3.5+ requires Windows Vista or greater */ +#define Py_WINVER 0x0600 /* _WIN32_WINNT_VISTA */ +#define Py_NTDDI NTDDI_VISTA + +/* We only set these values when building Python - we don't want to force + these values on extensions, as that will affect the prototypes and + structures exposed in the Windows headers. Even when building Python, we + allow a single source file to override this - they may need access to + structures etc so it can optionally use new Windows features if it + determines at runtime they are available. +*/ +#if defined(Py_BUILD_CORE) || defined(Py_BUILD_CORE_BUILTIN) || defined(Py_BUILD_CORE_MODULE) +#ifndef NTDDI_VERSION +#define NTDDI_VERSION Py_NTDDI +#endif +#ifndef WINVER +#define WINVER Py_WINVER +#endif +#ifndef _WIN32_WINNT +#define _WIN32_WINNT Py_WINVER +#endif +#endif + +/* _W64 is not defined for VC6 or eVC4 */ +#ifndef _W64 +#define _W64 +#endif + +/* Define like size_t, omitting the "unsigned" */ +#ifdef MS_WIN64 +typedef __int64 ssize_t; +#else +typedef _W64 int ssize_t; +#endif +#define HAVE_SSIZE_T 1 + +#if defined(MS_WIN32) && !defined(MS_WIN64) +#if defined(_M_IX86) +#if defined(__INTEL_COMPILER) +#define COMPILER ("[ICC v." _Py_STRINGIZE(__INTEL_COMPILER) " 32 bit (Intel) with MSC v." _Py_STRINGIZE(_MSC_VER) " CRT]") +#else +#define COMPILER _Py_PASTE_VERSION("32 bit (Intel)") +#endif /* __INTEL_COMPILER */ +#define PYD_PLATFORM_TAG "win32" +#elif defined(_M_ARM) +#define COMPILER _Py_PASTE_VERSION("32 bit (ARM)") +#define PYD_PLATFORM_TAG "win_arm" +#else +#define COMPILER _Py_PASTE_VERSION("32 bit (Unknown)") +#endif +#endif /* MS_WIN32 && !MS_WIN64 */ + +typedef int pid_t; + +#include +#define Py_IS_NAN _isnan +#define Py_IS_INFINITY(X) (!_finite(X) && !_isnan(X)) +#define Py_IS_FINITE(X) _finite(X) +#define copysign _copysign + +/* Side by Side assemblies supported in VS 2005 and VS 2008 but not 2010*/ +#if _MSC_VER >= 1400 && _MSC_VER < 1600 +#define HAVE_SXS 1 +#endif + +/* define some ANSI types that are not defined in earlier Win headers */ +#if _MSC_VER >= 1200 +/* This file only exists in VC 6.0 or higher */ +#include +#endif + +#endif /* _MSC_VER */ + +/* ------------------------------------------------------------------------*/ +/* egcs/gnu-win32 defines __GNUC__ and _WIN32 */ +#if defined(__GNUC__) && defined(_WIN32) +/* XXX These defines are likely incomplete, but should be easy to fix. + They should be complete enough to build extension modules. */ +/* Suggested by Rene Liebscher to avoid a GCC 2.91.* + bug that requires structure imports. More recent versions of the + compiler don't exhibit this bug. +*/ +#if (__GNUC__==2) && (__GNUC_MINOR__<=91) +#warning "Please use an up-to-date version of gcc! (>2.91 recommended)" +#endif + +#define COMPILER "[gcc]" +#define PY_LONG_LONG long long +#define PY_LLONG_MIN LLONG_MIN +#define PY_LLONG_MAX LLONG_MAX +#define PY_ULLONG_MAX ULLONG_MAX +#endif /* GNUC */ + +/* ------------------------------------------------------------------------*/ +/* lcc-win32 defines __LCC__ */ +#if defined(__LCC__) +/* XXX These defines are likely incomplete, but should be easy to fix. + They should be complete enough to build extension modules. */ + +#define COMPILER "[lcc-win32]" +typedef int pid_t; +/* __declspec() is supported here too - do nothing to get the defaults */ + +#endif /* LCC */ + +/* ------------------------------------------------------------------------*/ +/* End of compilers - finish up */ + +#ifndef NO_STDIO_H +# include +#endif + +/* 64 bit ints are usually spelt __int64 unless compiler has overridden */ +#ifndef PY_LONG_LONG +# define PY_LONG_LONG __int64 +# define PY_LLONG_MAX _I64_MAX +# define PY_LLONG_MIN _I64_MIN +# define PY_ULLONG_MAX _UI64_MAX +#endif + +/* For Windows the Python core is in a DLL by default. Test +Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */ +#if !defined(MS_NO_COREDLL) && !defined(Py_NO_ENABLE_SHARED) +# define Py_ENABLE_SHARED 1 /* standard symbol for shared library */ +# define MS_COREDLL /* deprecated old symbol */ +#endif /* !MS_NO_COREDLL && ... */ + +/* All windows compilers that use this header support __declspec */ +#define HAVE_DECLSPEC_DLL + +/* For an MSVC DLL, we can nominate the .lib files used by extensions */ +#ifdef MS_COREDLL +# if !defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_BUILTIN) + /* not building the core - must be an ext */ +# if defined(_MSC_VER) + /* So MSVC users need not specify the .lib + file in their Makefile (other compilers are + generally taken care of by distutils.) */ +# if defined(_DEBUG) +# pragma comment(lib,"python37_d.lib") +# elif defined(Py_LIMITED_API) +# pragma comment(lib,"python3.lib") +# else +# pragma comment(lib,"python37.lib") +# endif /* _DEBUG */ +# endif /* _MSC_VER */ +# endif /* Py_BUILD_CORE */ +#endif /* MS_COREDLL */ + +#if defined(MS_WIN64) +/* maintain "win32" sys.platform for backward compatibility of Python code, + the Win64 API should be close enough to the Win32 API to make this + preferable */ +# define PLATFORM "win32" +# define SIZEOF_VOID_P 8 +# define SIZEOF_TIME_T 8 +# define SIZEOF_OFF_T 4 +# define SIZEOF_FPOS_T 8 +# define SIZEOF_HKEY 8 +# define SIZEOF_SIZE_T 8 +/* configure.ac defines HAVE_LARGEFILE_SUPPORT iff + sizeof(off_t) > sizeof(long), and sizeof(PY_LONG_LONG) >= sizeof(off_t). + On Win64 the second condition is not true, but if fpos_t replaces off_t + then this is true. The uses of HAVE_LARGEFILE_SUPPORT imply that Win64 + should define this. */ +# define HAVE_LARGEFILE_SUPPORT +#elif defined(MS_WIN32) +# define PLATFORM "win32" +# define HAVE_LARGEFILE_SUPPORT +# define SIZEOF_VOID_P 4 +# define SIZEOF_OFF_T 4 +# define SIZEOF_FPOS_T 8 +# define SIZEOF_HKEY 4 +# define SIZEOF_SIZE_T 4 + /* MS VS2005 changes time_t to a 64-bit type on all platforms */ +# if defined(_MSC_VER) && _MSC_VER >= 1400 +# define SIZEOF_TIME_T 8 +# else +# define SIZEOF_TIME_T 4 +# endif +#endif + +#ifdef _DEBUG +# define Py_DEBUG +#endif + + +#ifdef MS_WIN32 + +#define SIZEOF_SHORT 2 +#define SIZEOF_INT 4 +#define SIZEOF_LONG 4 +#define SIZEOF_LONG_LONG 8 +#define SIZEOF_DOUBLE 8 +#define SIZEOF_FLOAT 4 + +/* VC 7.1 has them and VC 6.0 does not. VC 6.0 has a version number of 1200. + Microsoft eMbedded Visual C++ 4.0 has a version number of 1201 and doesn't + define these. + If some compiler does not provide them, modify the #if appropriately. */ +#if defined(_MSC_VER) +#if _MSC_VER > 1300 +#define HAVE_UINTPTR_T 1 +#define HAVE_INTPTR_T 1 +#else +/* VC6, VS 2002 and eVC4 don't support the C99 LL suffix for 64-bit integer literals */ +#define Py_LL(x) x##I64 +#endif /* _MSC_VER > 1300 */ +#endif /* _MSC_VER */ + +#endif + +/* define signed and unsigned exact-width 32-bit and 64-bit types, used in the + implementation of Python integers. */ +#define PY_UINT32_T uint32_t +#define PY_UINT64_T uint64_t +#define PY_INT32_T int32_t +#define PY_INT64_T int64_t + +/* Fairly standard from here! */ + +/* Define to 1 if you have the `copysign' function. */ +#define HAVE_COPYSIGN 1 + +/* Define to 1 if you have the `round' function. */ +#if _MSC_VER >= 1800 +#define HAVE_ROUND 1 +#endif + +/* Define to 1 if you have the `isinf' macro. */ +#define HAVE_DECL_ISINF 1 + +/* Define to 1 if you have the `isnan' function. */ +#define HAVE_DECL_ISNAN 1 + +/* Define if on AIX 3. + System headers sometimes define this. + We just want to avoid a redefinition error message. */ +#ifndef _ALL_SOURCE +/* #undef _ALL_SOURCE */ +#endif + +/* Define to empty if the keyword does not work. */ +/* #define const */ + +/* Define to 1 if you have the header file. */ +#define HAVE_CONIO_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_DIRECT_H 1 + +/* Define if you have dirent.h. */ +/* #define DIRENT 1 */ + +/* Define to the type of elements in the array set by `getgroups'. + Usually this is either `int' or `gid_t'. */ +/* #undef GETGROUPS_T */ + +/* Define to `int' if doesn't define. */ +/* #undef gid_t */ + +/* Define if your struct tm has tm_zone. */ +/* #undef HAVE_TM_ZONE */ + +/* Define if you don't have tm_zone but do have the external array + tzname. */ +#define HAVE_TZNAME + +/* Define to `int' if doesn't define. */ +/* #undef mode_t */ + +/* Define if you don't have dirent.h, but have ndir.h. */ +/* #undef NDIR */ + +/* Define to `long' if doesn't define. */ +/* #undef off_t */ + +/* Define to `int' if doesn't define. */ +/* #undef pid_t */ + +/* Define if the system does not provide POSIX.1 features except + with this defined. */ +/* #undef _POSIX_1_SOURCE */ + +/* Define if you need to in order for stat and other things to work. */ +/* #undef _POSIX_SOURCE */ + +/* Define as the return type of signal handlers (int or void). */ +#define RETSIGTYPE void + +/* Define to `unsigned' if doesn't define. */ +/* #undef size_t */ + +/* Define if you have the ANSI C header files. */ +#define STDC_HEADERS 1 + +/* Define if you don't have dirent.h, but have sys/dir.h. */ +/* #undef SYSDIR */ + +/* Define if you don't have dirent.h, but have sys/ndir.h. */ +/* #undef SYSNDIR */ + +/* Define if you can safely include both and . */ +/* #undef TIME_WITH_SYS_TIME */ + +/* Define if your declares struct tm. */ +/* #define TM_IN_SYS_TIME 1 */ + +/* Define to `int' if doesn't define. */ +/* #undef uid_t */ + +/* Define if the closedir function returns void instead of int. */ +/* #undef VOID_CLOSEDIR */ + +/* Define if getpgrp() must be called as getpgrp(0) + and (consequently) setpgrp() as setpgrp(0, 0). */ +/* #undef GETPGRP_HAVE_ARGS */ + +/* Define this if your time.h defines altzone */ +/* #define HAVE_ALTZONE */ + +/* Define if you have the putenv function. */ +#define HAVE_PUTENV + +/* Define if your compiler supports function prototypes */ +#define HAVE_PROTOTYPES + +/* Define if you can safely include both and + (which you can't on SCO ODT 3.0). */ +/* #undef SYS_SELECT_WITH_SYS_TIME */ + +/* Define if you want documentation strings in extension modules */ +#define WITH_DOC_STRINGS 1 + +/* Define if you want to compile in rudimentary thread support */ +/* #undef WITH_THREAD */ + +/* Define if you want to use the GNU readline library */ +/* #define WITH_READLINE 1 */ + +/* Use Python's own small-block memory-allocator. */ +#define WITH_PYMALLOC 1 + +/* Define if you have clock. */ +/* #define HAVE_CLOCK */ + +/* Define when any dynamic module loading is enabled */ +#define HAVE_DYNAMIC_LOADING + +/* Define if you have ftime. */ +#define HAVE_FTIME + +/* Define if you have getpeername. */ +#define HAVE_GETPEERNAME + +/* Define if you have getpgrp. */ +/* #undef HAVE_GETPGRP */ + +/* Define if you have getpid. */ +#define HAVE_GETPID + +/* Define if you have gettimeofday. */ +/* #undef HAVE_GETTIMEOFDAY */ + +/* Define if you have getwd. */ +/* #undef HAVE_GETWD */ + +/* Define if you have lstat. */ +/* #undef HAVE_LSTAT */ + +/* Define if you have the mktime function. */ +#define HAVE_MKTIME + +/* Define if you have nice. */ +/* #undef HAVE_NICE */ + +/* Define if you have readlink. */ +/* #undef HAVE_READLINK */ + +/* Define if you have setpgid. */ +/* #undef HAVE_SETPGID */ + +/* Define if you have setpgrp. */ +/* #undef HAVE_SETPGRP */ + +/* Define if you have setsid. */ +/* #undef HAVE_SETSID */ + +/* Define if you have setvbuf. */ +#define HAVE_SETVBUF + +/* Define if you have siginterrupt. */ +/* #undef HAVE_SIGINTERRUPT */ + +/* Define if you have symlink. */ +/* #undef HAVE_SYMLINK */ + +/* Define if you have tcgetpgrp. */ +/* #undef HAVE_TCGETPGRP */ + +/* Define if you have tcsetpgrp. */ +/* #undef HAVE_TCSETPGRP */ + +/* Define if you have times. */ +/* #undef HAVE_TIMES */ + +/* Define if you have uname. */ +/* #undef HAVE_UNAME */ + +/* Define if you have waitpid. */ +/* #undef HAVE_WAITPID */ + +/* Define to 1 if you have the `wcsftime' function. */ +#if defined(_MSC_VER) && _MSC_VER >= 1310 +#define HAVE_WCSFTIME 1 +#endif + +/* Define to 1 if you have the `wcscoll' function. */ +#define HAVE_WCSCOLL 1 + +/* Define to 1 if you have the `wcsxfrm' function. */ +#define HAVE_WCSXFRM 1 + +/* Define if the zlib library has inflateCopy */ +#define HAVE_ZLIB_COPY 1 + +/* Define if you have the header file. */ +/* #undef HAVE_DLFCN_H */ + +/* Define to 1 if you have the header file. */ +#define HAVE_ERRNO_H 1 + +/* Define if you have the header file. */ +#define HAVE_FCNTL_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_PROCESS_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SIGNAL_H 1 + +/* Define if you have the prototypes. */ +#define HAVE_STDARG_PROTOTYPES + +/* Define if you have the header file. */ +#define HAVE_STDDEF_H 1 + +/* Define if you have the header file. */ +/* #undef HAVE_SYS_AUDIOIO_H */ + +/* Define if you have the header file. */ +/* #define HAVE_SYS_PARAM_H 1 */ + +/* Define if you have the header file. */ +/* #define HAVE_SYS_SELECT_H 1 */ + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_STAT_H 1 + +/* Define if you have the header file. */ +/* #define HAVE_SYS_TIME_H 1 */ + +/* Define if you have the header file. */ +/* #define HAVE_SYS_TIMES_H 1 */ + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_TYPES_H 1 + +/* Define if you have the header file. */ +/* #define HAVE_SYS_UN_H 1 */ + +/* Define if you have the header file. */ +/* #define HAVE_SYS_UTIME_H 1 */ + +/* Define if you have the header file. */ +/* #define HAVE_SYS_UTSNAME_H 1 */ + +/* Define if you have the header file. */ +/* #define HAVE_UNISTD_H 1 */ + +/* Define if you have the header file. */ +/* #define HAVE_UTIME_H 1 */ + +/* Define if the compiler provides a wchar.h header file. */ +#define HAVE_WCHAR_H 1 + +/* The size of `wchar_t', as computed by sizeof. */ +#define SIZEOF_WCHAR_T 2 + +/* The size of `_Bool', as computed by sizeof. */ +#define SIZEOF__BOOL 1 + +/* The size of `pid_t', as computed by sizeof. */ +#define SIZEOF_PID_T SIZEOF_INT + +/* Define if you have the dl library (-ldl). */ +/* #undef HAVE_LIBDL */ + +/* Define if you have the mpc library (-lmpc). */ +/* #undef HAVE_LIBMPC */ + +/* Define if you have the nsl library (-lnsl). */ +#define HAVE_LIBNSL 1 + +/* Define if you have the seq library (-lseq). */ +/* #undef HAVE_LIBSEQ */ + +/* Define if you have the socket library (-lsocket). */ +#define HAVE_LIBSOCKET 1 + +/* Define if you have the sun library (-lsun). */ +/* #undef HAVE_LIBSUN */ + +/* Define if you have the termcap library (-ltermcap). */ +/* #undef HAVE_LIBTERMCAP */ + +/* Define if you have the termlib library (-ltermlib). */ +/* #undef HAVE_LIBTERMLIB */ + +/* Define if you have the thread library (-lthread). */ +/* #undef HAVE_LIBTHREAD */ + +/* WinSock does not use a bitmask in select, and uses + socket handles greater than FD_SETSIZE */ +#define Py_SOCKET_FD_CAN_BE_GE_FD_SETSIZE + +/* Define if C doubles are 64-bit IEEE 754 binary format, stored with the + least significant byte first */ +#define DOUBLE_IS_LITTLE_ENDIAN_IEEE754 1 + +/* Define to 1 if you have the `erf' function. */ +#define HAVE_ERF 1 + +/* Define to 1 if you have the `erfc' function. */ +#define HAVE_ERFC 1 + +/* Define if you have the 'inet_pton' function. */ +#define HAVE_INET_PTON 1 + +/* framework name */ +#define _PYTHONFRAMEWORK "" + +/* Define if libssl has X509_VERIFY_PARAM_set1_host and related function */ +#define HAVE_X509_VERIFY_PARAM_SET1_HOST 1 + +#endif /* !Py_CONFIG_H */ diff --git a/single_folder/dist/alien_invasion/SDL.dll b/single_folder/dist/alien_invasion/SDL.dll new file mode 100644 index 0000000..c82f905 Binary files /dev/null and b/single_folder/dist/alien_invasion/SDL.dll differ diff --git a/single_folder/dist/alien_invasion/SDL_image.dll b/single_folder/dist/alien_invasion/SDL_image.dll new file mode 100644 index 0000000..0027cc7 Binary files /dev/null and b/single_folder/dist/alien_invasion/SDL_image.dll differ diff --git a/single_folder/dist/alien_invasion/SDL_mixer.dll b/single_folder/dist/alien_invasion/SDL_mixer.dll new file mode 100644 index 0000000..67979bc Binary files /dev/null and b/single_folder/dist/alien_invasion/SDL_mixer.dll differ diff --git a/single_folder/dist/alien_invasion/SDL_ttf.dll b/single_folder/dist/alien_invasion/SDL_ttf.dll new file mode 100644 index 0000000..a5bdb4a Binary files /dev/null and b/single_folder/dist/alien_invasion/SDL_ttf.dll differ diff --git a/single_folder/dist/alien_invasion/VCRUNTIME140.dll b/single_folder/dist/alien_invasion/VCRUNTIME140.dll new file mode 100644 index 0000000..1d07369 Binary files /dev/null and b/single_folder/dist/alien_invasion/VCRUNTIME140.dll differ diff --git a/single_folder/dist/alien_invasion/_bz2.pyd b/single_folder/dist/alien_invasion/_bz2.pyd new file mode 100644 index 0000000..dce965a Binary files /dev/null and b/single_folder/dist/alien_invasion/_bz2.pyd differ diff --git a/single_folder/dist/alien_invasion/_ctypes.pyd b/single_folder/dist/alien_invasion/_ctypes.pyd new file mode 100644 index 0000000..4d2bb80 Binary files /dev/null and b/single_folder/dist/alien_invasion/_ctypes.pyd differ diff --git a/single_folder/dist/alien_invasion/_elementtree.pyd b/single_folder/dist/alien_invasion/_elementtree.pyd new file mode 100644 index 0000000..e4a2ea8 Binary files /dev/null and b/single_folder/dist/alien_invasion/_elementtree.pyd differ diff --git a/single_folder/dist/alien_invasion/_hashlib.pyd b/single_folder/dist/alien_invasion/_hashlib.pyd new file mode 100644 index 0000000..b9ca64d Binary files /dev/null and b/single_folder/dist/alien_invasion/_hashlib.pyd differ diff --git a/single_folder/dist/alien_invasion/_lzma.pyd b/single_folder/dist/alien_invasion/_lzma.pyd new file mode 100644 index 0000000..e3cc185 Binary files /dev/null and b/single_folder/dist/alien_invasion/_lzma.pyd differ diff --git a/single_folder/dist/alien_invasion/_queue.pyd b/single_folder/dist/alien_invasion/_queue.pyd new file mode 100644 index 0000000..7abd849 Binary files /dev/null and b/single_folder/dist/alien_invasion/_queue.pyd differ diff --git a/single_folder/dist/alien_invasion/_socket.pyd b/single_folder/dist/alien_invasion/_socket.pyd new file mode 100644 index 0000000..6776644 Binary files /dev/null and b/single_folder/dist/alien_invasion/_socket.pyd differ diff --git a/single_folder/dist/alien_invasion/_ssl.pyd b/single_folder/dist/alien_invasion/_ssl.pyd new file mode 100644 index 0000000..573c5d1 Binary files /dev/null and b/single_folder/dist/alien_invasion/_ssl.pyd differ diff --git a/single_folder/dist/alien_invasion/_win32sysloader.pyd b/single_folder/dist/alien_invasion/_win32sysloader.pyd new file mode 100644 index 0000000..5778b9f Binary files /dev/null and b/single_folder/dist/alien_invasion/_win32sysloader.pyd differ diff --git a/single_folder/dist/alien_invasion/alien_invasion.exe b/single_folder/dist/alien_invasion/alien_invasion.exe new file mode 100644 index 0000000..ddabc14 Binary files /dev/null and b/single_folder/dist/alien_invasion/alien_invasion.exe differ diff --git a/single_folder/dist/alien_invasion/alien_invasion.exe.manifest b/single_folder/dist/alien_invasion/alien_invasion.exe.manifest new file mode 100644 index 0000000..d16b679 --- /dev/null +++ b/single_folder/dist/alien_invasion/alien_invasion.exe.manifest @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/single_folder/dist/alien_invasion/base_library.zip b/single_folder/dist/alien_invasion/base_library.zip new file mode 100644 index 0000000..ed90053 Binary files /dev/null and b/single_folder/dist/alien_invasion/base_library.zip differ diff --git a/single_folder/dist/alien_invasion/data/FreeSansBold.ttf b/single_folder/dist/alien_invasion/data/FreeSansBold.ttf new file mode 100644 index 0000000..63644e7 Binary files /dev/null and b/single_folder/dist/alien_invasion/data/FreeSansBold.ttf differ diff --git a/single_folder/dist/alien_invasion/images/alien.bmp b/single_folder/dist/alien_invasion/images/alien.bmp new file mode 100644 index 0000000..8056ffc Binary files /dev/null and b/single_folder/dist/alien_invasion/images/alien.bmp differ diff --git a/single_folder/dist/alien_invasion/images/background.bmp b/single_folder/dist/alien_invasion/images/background.bmp new file mode 100644 index 0000000..97695c6 Binary files /dev/null and b/single_folder/dist/alien_invasion/images/background.bmp differ diff --git a/single_folder/dist/alien_invasion/images/background.png b/single_folder/dist/alien_invasion/images/background.png new file mode 100644 index 0000000..a58ad1a Binary files /dev/null and b/single_folder/dist/alien_invasion/images/background.png differ diff --git a/single_folder/dist/alien_invasion/images/icon.bmp b/single_folder/dist/alien_invasion/images/icon.bmp new file mode 100644 index 0000000..95fcc43 Binary files /dev/null and b/single_folder/dist/alien_invasion/images/icon.bmp differ diff --git a/single_folder/dist/alien_invasion/images/icon.ico b/single_folder/dist/alien_invasion/images/icon.ico new file mode 100644 index 0000000..f8e0f5d Binary files /dev/null and b/single_folder/dist/alien_invasion/images/icon.ico differ diff --git a/single_folder/dist/alien_invasion/images/ship.bmp b/single_folder/dist/alien_invasion/images/ship.bmp new file mode 100644 index 0000000..283167e Binary files /dev/null and b/single_folder/dist/alien_invasion/images/ship.bmp differ diff --git a/single_folder/dist/alien_invasion/images/space_ship_img.png b/single_folder/dist/alien_invasion/images/space_ship_img.png new file mode 100644 index 0000000..d084685 Binary files /dev/null and b/single_folder/dist/alien_invasion/images/space_ship_img.png differ diff --git a/single_folder/dist/alien_invasion/images/ufo.png b/single_folder/dist/alien_invasion/images/ufo.png new file mode 100644 index 0000000..46128e9 Binary files /dev/null and b/single_folder/dist/alien_invasion/images/ufo.png differ diff --git a/single_folder/dist/alien_invasion/libcrypto-1_1.dll b/single_folder/dist/alien_invasion/libcrypto-1_1.dll new file mode 100644 index 0000000..646bc19 Binary files /dev/null and b/single_folder/dist/alien_invasion/libcrypto-1_1.dll differ diff --git a/single_folder/dist/alien_invasion/libfreetype-6.dll b/single_folder/dist/alien_invasion/libfreetype-6.dll new file mode 100644 index 0000000..a6e5f74 Binary files /dev/null and b/single_folder/dist/alien_invasion/libfreetype-6.dll differ diff --git a/single_folder/dist/alien_invasion/libjpeg-8.dll b/single_folder/dist/alien_invasion/libjpeg-8.dll new file mode 100644 index 0000000..26fda46 Binary files /dev/null and b/single_folder/dist/alien_invasion/libjpeg-8.dll differ diff --git a/single_folder/dist/alien_invasion/libmpg123-0.dll b/single_folder/dist/alien_invasion/libmpg123-0.dll new file mode 100644 index 0000000..6eff5e6 Binary files /dev/null and b/single_folder/dist/alien_invasion/libmpg123-0.dll differ diff --git a/single_folder/dist/alien_invasion/libogg-0.dll b/single_folder/dist/alien_invasion/libogg-0.dll new file mode 100644 index 0000000..9466d9f Binary files /dev/null and b/single_folder/dist/alien_invasion/libogg-0.dll differ diff --git a/single_folder/dist/alien_invasion/libpng16-16.dll b/single_folder/dist/alien_invasion/libpng16-16.dll new file mode 100644 index 0000000..4dbd22b Binary files /dev/null and b/single_folder/dist/alien_invasion/libpng16-16.dll differ diff --git a/single_folder/dist/alien_invasion/libssl-1_1.dll b/single_folder/dist/alien_invasion/libssl-1_1.dll new file mode 100644 index 0000000..1b92aed Binary files /dev/null and b/single_folder/dist/alien_invasion/libssl-1_1.dll differ diff --git a/single_folder/dist/alien_invasion/libtiff-5.dll b/single_folder/dist/alien_invasion/libtiff-5.dll new file mode 100644 index 0000000..67ebfb0 Binary files /dev/null and b/single_folder/dist/alien_invasion/libtiff-5.dll differ diff --git a/single_folder/dist/alien_invasion/libvorbis-0.dll b/single_folder/dist/alien_invasion/libvorbis-0.dll new file mode 100644 index 0000000..e73d897 Binary files /dev/null and b/single_folder/dist/alien_invasion/libvorbis-0.dll differ diff --git a/single_folder/dist/alien_invasion/libvorbisfile-3.dll b/single_folder/dist/alien_invasion/libvorbisfile-3.dll new file mode 100644 index 0000000..2eeaa3e Binary files /dev/null and b/single_folder/dist/alien_invasion/libvorbisfile-3.dll differ diff --git a/single_folder/dist/alien_invasion/libwebp-5.dll b/single_folder/dist/alien_invasion/libwebp-5.dll new file mode 100644 index 0000000..d9bdbbf Binary files /dev/null and b/single_folder/dist/alien_invasion/libwebp-5.dll differ diff --git a/single_folder/dist/alien_invasion/mfc140u.dll b/single_folder/dist/alien_invasion/mfc140u.dll new file mode 100644 index 0000000..cca2602 Binary files /dev/null and b/single_folder/dist/alien_invasion/mfc140u.dll differ diff --git a/single_folder/dist/alien_invasion/pyexpat.pyd b/single_folder/dist/alien_invasion/pyexpat.pyd new file mode 100644 index 0000000..d1989dd Binary files /dev/null and b/single_folder/dist/alien_invasion/pyexpat.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/_freetype.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/_freetype.cp37-win_amd64.pyd new file mode 100644 index 0000000..a62e7d4 Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/_freetype.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/base.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/base.cp37-win_amd64.pyd new file mode 100644 index 0000000..7137d14 Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/base.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/bufferproxy.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/bufferproxy.cp37-win_amd64.pyd new file mode 100644 index 0000000..b2e09e7 Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/bufferproxy.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/cdrom.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/cdrom.cp37-win_amd64.pyd new file mode 100644 index 0000000..cf32ce4 Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/cdrom.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/color.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/color.cp37-win_amd64.pyd new file mode 100644 index 0000000..50fc7c0 Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/color.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/constants.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/constants.cp37-win_amd64.pyd new file mode 100644 index 0000000..17ec9a6 Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/constants.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/display.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/display.cp37-win_amd64.pyd new file mode 100644 index 0000000..d2d9612 Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/display.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/draw.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/draw.cp37-win_amd64.pyd new file mode 100644 index 0000000..e1ef8cb Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/draw.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/event.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/event.cp37-win_amd64.pyd new file mode 100644 index 0000000..a8fba44 Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/event.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/fastevent.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/fastevent.cp37-win_amd64.pyd new file mode 100644 index 0000000..0bf6486 Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/fastevent.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/font.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/font.cp37-win_amd64.pyd new file mode 100644 index 0000000..0a21aab Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/font.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/image.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/image.cp37-win_amd64.pyd new file mode 100644 index 0000000..aeb6d37 Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/image.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/imageext.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/imageext.cp37-win_amd64.pyd new file mode 100644 index 0000000..2818059 Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/imageext.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/joystick.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/joystick.cp37-win_amd64.pyd new file mode 100644 index 0000000..b537c30 Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/joystick.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/key.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/key.cp37-win_amd64.pyd new file mode 100644 index 0000000..41f5647 Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/key.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/mask.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/mask.cp37-win_amd64.pyd new file mode 100644 index 0000000..579762d Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/mask.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/math.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/math.cp37-win_amd64.pyd new file mode 100644 index 0000000..707f18a Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/math.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/mixer.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/mixer.cp37-win_amd64.pyd new file mode 100644 index 0000000..82eb04c Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/mixer.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/mixer_music.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/mixer_music.cp37-win_amd64.pyd new file mode 100644 index 0000000..5f07da6 Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/mixer_music.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/mouse.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/mouse.cp37-win_amd64.pyd new file mode 100644 index 0000000..6abb066 Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/mouse.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/overlay.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/overlay.cp37-win_amd64.pyd new file mode 100644 index 0000000..76059f4 Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/overlay.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/pixelarray.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/pixelarray.cp37-win_amd64.pyd new file mode 100644 index 0000000..3c25c23 Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/pixelarray.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/pixelcopy.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/pixelcopy.cp37-win_amd64.pyd new file mode 100644 index 0000000..23ec0dd Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/pixelcopy.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/rect.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/rect.cp37-win_amd64.pyd new file mode 100644 index 0000000..344277f Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/rect.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/rwobject.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/rwobject.cp37-win_amd64.pyd new file mode 100644 index 0000000..fdaf7cc Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/rwobject.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/scrap.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/scrap.cp37-win_amd64.pyd new file mode 100644 index 0000000..ec1e19b Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/scrap.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/surface.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/surface.cp37-win_amd64.pyd new file mode 100644 index 0000000..ec0b086 Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/surface.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/surflock.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/surflock.cp37-win_amd64.pyd new file mode 100644 index 0000000..7295389 Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/surflock.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/time.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/time.cp37-win_amd64.pyd new file mode 100644 index 0000000..e502a5f Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/time.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/pygame/transform.cp37-win_amd64.pyd b/single_folder/dist/alien_invasion/pygame/transform.cp37-win_amd64.pyd new file mode 100644 index 0000000..d52a213 Binary files /dev/null and b/single_folder/dist/alien_invasion/pygame/transform.cp37-win_amd64.pyd differ diff --git a/single_folder/dist/alien_invasion/python37.dll b/single_folder/dist/alien_invasion/python37.dll new file mode 100644 index 0000000..ad18aab Binary files /dev/null and b/single_folder/dist/alien_invasion/python37.dll differ diff --git a/single_folder/dist/alien_invasion/pythoncom37.dll b/single_folder/dist/alien_invasion/pythoncom37.dll new file mode 100644 index 0000000..2616f71 Binary files /dev/null and b/single_folder/dist/alien_invasion/pythoncom37.dll differ diff --git a/single_folder/dist/alien_invasion/pywintypes37.dll b/single_folder/dist/alien_invasion/pywintypes37.dll new file mode 100644 index 0000000..a075839 Binary files /dev/null and b/single_folder/dist/alien_invasion/pywintypes37.dll differ diff --git a/single_folder/dist/alien_invasion/select.pyd b/single_folder/dist/alien_invasion/select.pyd new file mode 100644 index 0000000..eb02744 Binary files /dev/null and b/single_folder/dist/alien_invasion/select.pyd differ diff --git a/single_folder/dist/alien_invasion/sounds/Trickshot.ogg b/single_folder/dist/alien_invasion/sounds/Trickshot.ogg new file mode 100644 index 0000000..a81d4da Binary files /dev/null and b/single_folder/dist/alien_invasion/sounds/Trickshot.ogg differ diff --git a/single_folder/dist/alien_invasion/sounds/explode.wav b/single_folder/dist/alien_invasion/sounds/explode.wav new file mode 100644 index 0000000..ac36d4f Binary files /dev/null and b/single_folder/dist/alien_invasion/sounds/explode.wav differ diff --git a/single_folder/dist/alien_invasion/sounds/laser.wav b/single_folder/dist/alien_invasion/sounds/laser.wav new file mode 100644 index 0000000..a2c17a7 Binary files /dev/null and b/single_folder/dist/alien_invasion/sounds/laser.wav differ diff --git a/single_folder/dist/alien_invasion/unicodedata.pyd b/single_folder/dist/alien_invasion/unicodedata.pyd new file mode 100644 index 0000000..ef5d230 Binary files /dev/null and b/single_folder/dist/alien_invasion/unicodedata.pyd differ diff --git a/single_folder/dist/alien_invasion/win32api.pyd b/single_folder/dist/alien_invasion/win32api.pyd new file mode 100644 index 0000000..f04ba33 Binary files /dev/null and b/single_folder/dist/alien_invasion/win32api.pyd differ diff --git a/single_folder/dist/alien_invasion/win32com/shell/shell.pyd b/single_folder/dist/alien_invasion/win32com/shell/shell.pyd new file mode 100644 index 0000000..dbcc5de Binary files /dev/null and b/single_folder/dist/alien_invasion/win32com/shell/shell.pyd differ diff --git a/single_folder/dist/alien_invasion/win32trace.pyd b/single_folder/dist/alien_invasion/win32trace.pyd new file mode 100644 index 0000000..cf46e87 Binary files /dev/null and b/single_folder/dist/alien_invasion/win32trace.pyd differ diff --git a/single_folder/dist/alien_invasion/win32ui.pyd b/single_folder/dist/alien_invasion/win32ui.pyd new file mode 100644 index 0000000..480c4e3 Binary files /dev/null and b/single_folder/dist/alien_invasion/win32ui.pyd differ diff --git a/single_folder/dist/alien_invasion/win32wnet.pyd b/single_folder/dist/alien_invasion/win32wnet.pyd new file mode 100644 index 0000000..16df58a Binary files /dev/null and b/single_folder/dist/alien_invasion/win32wnet.pyd differ diff --git a/single_folder/dist/alien_invasion/zlib1.dll b/single_folder/dist/alien_invasion/zlib1.dll new file mode 100644 index 0000000..2d3b770 Binary files /dev/null and b/single_folder/dist/alien_invasion/zlib1.dll differ