diff --git a/RCBasic_Dev_Setup.bat b/RCBasic_Dev_Setup.bat
new file mode 100644
index 0000000..951c73f
--- /dev/null
+++ b/RCBasic_Dev_Setup.bat
@@ -0,0 +1,190 @@
+cd ..
+
+set DEV_BASE_DIR=%CD%
+
+git clone --branch sdl2_device https://github.com/n00b87/RCIrrlicht.git
+
+git clone --branch irrlicht_loader https://github.com/n00b87/an8-parser.git
+
+git clone https://github.com/n00b87/RCDocs.git
+git clone https://github.com/n00b87/IrrTheora.git
+git clone https://github.com/n00b87/irrBullet.git
+
+git clone --branch "VER-2-13-3" https://github.com/freetype/freetype.git
+
+curl -Lo SDL2-devel-2.30.10-mingw.zip "https://github.com/libsdl-org/SDL/releases/download/release-2.30.10/SDL2-devel-2.30.10-mingw.zip"
+tar -xf SDL2-devel-2.30.10-mingw.zip
+rename SDL2-2.30.10 SDL2-dev
+
+curl -Lo SDL2_image-devel-2.8.3-mingw.zip "https://github.com/libsdl-org/SDL_image/releases/download/release-2.8.3/SDL2_image-devel-2.8.3-mingw.zip"
+tar -xf SDL2_image-devel-2.8.3-mingw.zip
+rename SDL2_image-2.8.3 SDL2_image-dev
+
+curl -Lo SDL2_mixer-devel-2.8.0-mingw.zip "https://github.com/libsdl-org/SDL_mixer/releases/download/release-2.8.0/SDL2_mixer-devel-2.8.0-mingw.zip"
+tar -xf SDL2_mixer-devel-2.8.0-mingw.zip
+rename SDL2_mixer-2.8.0 SDL2_mixer-dev
+
+curl -Lo SDL2_net-devel-2.2.0-mingw.zip "https://github.com/libsdl-org/SDL_net/releases/download/release-2.2.0/SDL2_net-devel-2.2.0-mingw.zip"
+tar -xf SDL2_net-devel-2.2.0-mingw.zip
+rename SDL2_net-2.2.0 SDL2_net-dev
+
+git clone --branch "v1.1.1" https://github.com/xiph/theora.git
+git clone --branch "v1.1.1" https://github.com/xiph/theora.git theora64
+git clone --branch "v1.3.7" https://github.com/xiph/vorbis.git
+git clone --branch "v1.3.5" https://github.com/xiph/ogg.git
+
+git clone --branch "v2.4.2" https://github.com/erincatto/box2d.git
+git clone --branch "3.25" https://github.com/bulletphysics/bullet3.git
+
+cd ogg
+
+set TMP_PATH=%PATH%
+
+set PATH=%MINGW32%\bin;%PATH%
+mkdir build
+cd build
+cmake -G "MinGW Makefiles" ..
+mingw32-make
+set PATH=%TMP_PATH%
+
+cd ..
+
+set PATH=%MINGW64%\bin;%PATH%
+mkdir build64
+cd build64
+cmake -G "MinGW Makefiles" ..
+mingw32-make
+set PATH=%TMP_PATH%
+
+cd %DEV_BASE_DIR%
+
+cd vorbis
+
+set PATH=%MINGW32%\bin;%PATH%
+mkdir build
+cd build
+cmake -G "MinGW Makefiles" .. -DOGG_INCLUDE_DIR=%DEV_BASE_DIR%\ogg\include -DOGG_LIBRARY=%DEV_BASE_DIR%\ogg\build\libogg.a
+mingw32-make
+set PATH=%TMP_PATH%
+
+cd ..
+
+set PATH=%MINGW64%\bin;%PATH%
+mkdir build64
+cd build64
+cmake -G "MinGW Makefiles" .. -DOGG_INCLUDE_DIR=%DEV_BASE_DIR%\ogg\include -DOGG_LIBRARY=%DEV_BASE_DIR%\ogg\build64\libogg.a
+mingw32-make
+set PATH=%TMP_PATH%
+
+cd %DEV_BASE_DIR%
+
+set PATH=%MINGW32%\bin;%PATH%
+cd theora\win32\xmingw32
+set bash="C:\Program Files\Git\bin\sh.exe"
+%bash% --login -i -c "export dev_dir=$PWD/../../.. && export C_INCLUDE_PATH=$dev_dir/ogg/include && export C_INCLUDE_PATH=$dev_dir/vorbis/include:$C_INCLUDE_PATH && export LIBRARY_PATH=$dev_dir/ogg/build:$LIBRARY_PATH && export LIBRARY_PATH=$dev_dir/vorbis/build/lib:$LIBRARY_PATH && mingw32-make libtheoradec.dll"
+set PATH=%TMP_PATH%
+
+cd %DEV_BASE_DIR%
+
+set PATH=%MINGW64%\bin;%PATH%
+cd theora64\win32\xmingw32
+set bash="C:\Program Files\Git\bin\sh.exe"
+%bash% --login -i -c "export dev_dir=$PWD/../../.. && export C_INCLUDE_PATH=$dev_dir/ogg/include && export C_INCLUDE_PATH=$dev_dir/vorbis/include:$C_INCLUDE_PATH && export LIBRARY_PATH=$dev_dir/ogg/build64:$LIBRARY_PATH && export LIBRARY_PATH=$dev_dir/vorbis/build64/lib:$LIBRARY_PATH && mingw32-make libtheoradec.dll"
+set PATH=%TMP_PATH%
+
+cd %DEV_BASE_DIR%
+
+
+cd box2d
+
+set PATH=%MINGW32%\bin;%PATH%
+mkdir build
+cd build
+cmake -G "MinGW Makefiles" ..
+mingw32-make
+set PATH=%TMP_PATH%
+
+cd ..
+
+set PATH=%MINGW64%\bin;%PATH%
+mkdir build64
+cd build64
+cmake -G "MinGW Makefiles" ..
+mingw32-make
+set PATH=%TMP_PATH%
+
+cd %DEV_BASE_DIR%
+
+
+
+cd bullet3
+
+cd src
+mklink /J bullet %CD%
+cd ..
+
+set PATH=%MINGW32%\bin;%PATH%
+mkdir build
+cd build
+cmake -G "MinGW Makefiles" .. -DBUILD_OPENGL3_DEMOS=OFF -DBUILD_BULLET2_DEMOS=OFF -DBUILD_UNIT_TESTS=OFF -DUSE_GRAPHICAL_BENCHMARK=OFF
+mingw32-make
+set PATH=%TMP_PATH%
+
+cd ..
+
+set PATH=%MINGW64%\bin;%PATH%
+mkdir build64
+cd build64
+cmake -G "MinGW Makefiles" .. -DBUILD_OPENGL3_DEMOS=OFF -DBUILD_BULLET2_DEMOS=OFF -DBUILD_UNIT_TESTS=OFF -DUSE_GRAPHICAL_BENCHMARK=OFF
+mingw32-make
+set PATH=%TMP_PATH%
+
+cd %DEV_BASE_DIR%
+
+
+cd freetype
+
+cd include
+mklink /J freetype2 %CD%
+cd ..
+
+set PATH=%MINGW32%\bin;%PATH%
+mkdir build
+cd build
+cmake -G "MinGW Makefiles" ..
+mingw32-make
+set PATH=%TMP_PATH%
+
+cd ..
+
+set PATH=%MINGW64%\bin;%PATH%
+mkdir build64
+cd build64
+cmake -G "MinGW Makefiles" ..
+mingw32-make
+set PATH=%TMP_PATH%
+
+cd %DEV_BASE_DIR%
+
+
+cd RCIrrlicht\include
+del IrrCompileConfig.h
+rename IrrCompileConfig_win.h IrrCompileConfig.h
+cd %DEV_BASE_DIR%
+
+cd RCIrrlicht\source\Irrlicht
+
+set PATH=%CODEBLOCKS_DIR%;%PATH%
+
+codeblocks --clean --target="Win32 - Release - accurate math - dll" Irrlicht-gcc.cbp
+codeblocks --clean --target="Release64 - accurate math - dll" Irrlicht-gcc.cbp
+
+codeblocks --build --target="Win32 - Release - accurate math - dll" Irrlicht-gcc.cbp
+codeblocks --build --target="Release64 - accurate math - dll" Irrlicht-gcc.cbp
+
+set PATH=%TMP_PATH%
+
+cd %DEV_BASE_DIR%
+
+echo ------------------------
+echo Setup Complete
\ No newline at end of file
diff --git a/README.md b/README.md
index e5171e4..30ff9eb 100755
--- a/README.md
+++ b/README.md
@@ -1,2 +1,12 @@
# RCBASIC4
Version 4 of the RCBasic Programming Language Compiler and Runtime
+
+## Setup Build Environment
+
+### On Windows
+1. Install the following software: Codeblocks, MinGW32, MinGW64, Git, and CMake
+2. Set MINGW32 and MINGW64 environment variables to the root of each tool
+3. Set CODEBLOCKS_DIR to Codeblocks root
+4. Run RCBasic_Dev_Setup.bat
+
+
diff --git a/rcbasic_build/rcbasic_build_win.cbp b/rcbasic_build/rcbasic_build_win.cbp
new file mode 100644
index 0000000..c17a3d5
--- /dev/null
+++ b/rcbasic_build/rcbasic_build_win.cbp
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rcbasic_build/rcbasic_build_win.depend b/rcbasic_build/rcbasic_build_win.depend
new file mode 100644
index 0000000..a7c4f3b
--- /dev/null
+++ b/rcbasic_build/rcbasic_build_win.depend
@@ -0,0 +1,524 @@
+# depslib dependency file v1.0
+1734515750 source:c:\dev\rcbasic4\rcbasic_build\main.cpp
+
+
+
+
+
+
+ "tokenizer.h"
+ "parser.h"
+ "rc_builtin.h"
+ "rc_vm_asm.h"
+ "file_directory.h"
+ "env_resolve.h"
+ "identifier.h"
+
+1734515750 c:\dev\rcbasic4\rcbasic_build\tokenizer.h
+
+
+
+
+
+ "rc_utility.h"
+ "rc_debug.h"
+ "keywords.h"
+ "constants.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl.h
+ "SDL_main.h"
+ "SDL_stdinc.h"
+ "SDL_assert.h"
+ "SDL_atomic.h"
+ "SDL_audio.h"
+ "SDL_clipboard.h"
+ "SDL_cpuinfo.h"
+ "SDL_endian.h"
+ "SDL_error.h"
+ "SDL_events.h"
+ "SDL_filesystem.h"
+ "SDL_gamecontroller.h"
+ "SDL_guid.h"
+ "SDL_haptic.h"
+ "SDL_hidapi.h"
+ "SDL_hints.h"
+ "SDL_joystick.h"
+ "SDL_loadso.h"
+ "SDL_log.h"
+ "SDL_messagebox.h"
+ "SDL_metal.h"
+ "SDL_mutex.h"
+ "SDL_power.h"
+ "SDL_render.h"
+ "SDL_rwops.h"
+ "SDL_sensor.h"
+ "SDL_shape.h"
+ "SDL_system.h"
+ "SDL_thread.h"
+ "SDL_timer.h"
+ "SDL_version.h"
+ "SDL_video.h"
+ "SDL_locale.h"
+ "SDL_misc.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_main.h
+ "SDL_stdinc.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_stdinc.h
+ "SDL_config.h"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "begin_code.h"
+
+
+
+ "close_code.h"
+
+1704143989 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_config.h
+ "SDL_platform.h"
+ "SDL_config_windows.h"
+ "SDL_config_winrt.h"
+ "SDL_config_wingdk.h"
+ "SDL_config_xbox.h"
+ "SDL_config_macosx.h"
+ "SDL_config_iphoneos.h"
+ "SDL_config_android.h"
+ "SDL_config_os2.h"
+ "SDL_config_emscripten.h"
+ "SDL_config_ngage.h"
+ "SDL_config_minimal.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_platform.h
+
+
+
+
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\begin_code.h
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\close_code.h
+
+1716767039 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_config_windows.h
+ "SDL_platform.h"
+
+
+
+1704143989 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_config_winrt.h
+ "SDL_platform.h"
+
+
+1704143989 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_config_wingdk.h
+ "SDL_platform.h"
+
+1704143989 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_config_xbox.h
+ "SDL_platform.h"
+
+1704143989 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_config_macosx.h
+ "SDL_platform.h"
+
+
+1704143989 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_config_iphoneos.h
+ "SDL_platform.h"
+
+1704143989 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_config_android.h
+ "SDL_platform.h"
+
+
+1716868864 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_config_os2.h
+ "SDL_platform.h"
+
+1704143989 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_config_emscripten.h
+ "SDL_platform.h"
+
+1704143989 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_config_ngage.h
+ "SDL_platform.h"
+
+1704143989 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_config_minimal.h
+ "SDL_platform.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_assert.h
+ "SDL_stdinc.h"
+ "begin_code.h"
+
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_atomic.h
+ "SDL_stdinc.h"
+ "SDL_platform.h"
+ "begin_code.h"
+
+
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_audio.h
+ "SDL_stdinc.h"
+ "SDL_error.h"
+ "SDL_endian.h"
+ "SDL_mutex.h"
+ "SDL_thread.h"
+ "SDL_rwops.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_error.h
+ "SDL_stdinc.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_endian.h
+ "SDL_stdinc.h"
+
+
+
+
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_mutex.h
+ "SDL_stdinc.h"
+ "SDL_error.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_thread.h
+ "SDL_stdinc.h"
+ "SDL_error.h"
+ "SDL_atomic.h"
+ "SDL_mutex.h"
+
+
+
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_rwops.h
+ "SDL_stdinc.h"
+ "SDL_error.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_clipboard.h
+ "SDL_stdinc.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_cpuinfo.h
+ "SDL_stdinc.h"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_events.h
+ "SDL_stdinc.h"
+ "SDL_error.h"
+ "SDL_video.h"
+ "SDL_keyboard.h"
+ "SDL_mouse.h"
+ "SDL_joystick.h"
+ "SDL_gamecontroller.h"
+ "SDL_quit.h"
+ "SDL_gesture.h"
+ "SDL_touch.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_video.h
+ "SDL_stdinc.h"
+ "SDL_pixels.h"
+ "SDL_rect.h"
+ "SDL_surface.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_pixels.h
+ "SDL_stdinc.h"
+ "SDL_endian.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_rect.h
+ "SDL_stdinc.h"
+ "SDL_error.h"
+ "SDL_pixels.h"
+ "SDL_rwops.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_surface.h
+ "SDL_stdinc.h"
+ "SDL_pixels.h"
+ "SDL_rect.h"
+ "SDL_blendmode.h"
+ "SDL_rwops.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_blendmode.h
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_keyboard.h
+ "SDL_stdinc.h"
+ "SDL_error.h"
+ "SDL_keycode.h"
+ "SDL_video.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_keycode.h
+ "SDL_stdinc.h"
+ "SDL_scancode.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_scancode.h
+ "SDL_stdinc.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_mouse.h
+ "SDL_stdinc.h"
+ "SDL_error.h"
+ "SDL_video.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_joystick.h
+ "SDL_stdinc.h"
+ "SDL_error.h"
+ "SDL_guid.h"
+ "SDL_mutex.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_guid.h
+ "SDL_stdinc.h"
+ "SDL_error.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_gamecontroller.h
+ "SDL_stdinc.h"
+ "SDL_error.h"
+ "SDL_rwops.h"
+ "SDL_sensor.h"
+ "SDL_joystick.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_sensor.h
+ "SDL_stdinc.h"
+ "SDL_error.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_quit.h
+ "SDL_stdinc.h"
+ "SDL_error.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_gesture.h
+ "SDL_stdinc.h"
+ "SDL_error.h"
+ "SDL_video.h"
+ "SDL_touch.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_touch.h
+ "SDL_stdinc.h"
+ "SDL_error.h"
+ "SDL_video.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_filesystem.h
+ "SDL_stdinc.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_haptic.h
+ "SDL_stdinc.h"
+ "SDL_error.h"
+ "SDL_joystick.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_hidapi.h
+ "SDL_stdinc.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_hints.h
+ "SDL_stdinc.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_loadso.h
+ "SDL_stdinc.h"
+ "SDL_error.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_log.h
+ "SDL_stdinc.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_messagebox.h
+ "SDL_stdinc.h"
+ "SDL_video.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_metal.h
+ "SDL_video.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_power.h
+ "SDL_stdinc.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_render.h
+ "SDL_stdinc.h"
+ "SDL_rect.h"
+ "SDL_video.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_shape.h
+ "SDL_stdinc.h"
+ "SDL_pixels.h"
+ "SDL_rect.h"
+ "SDL_surface.h"
+ "SDL_video.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_system.h
+ "SDL_stdinc.h"
+ "SDL_keyboard.h"
+ "SDL_render.h"
+ "SDL_video.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_timer.h
+ "SDL_stdinc.h"
+ "SDL_error.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_version.h
+ "SDL_stdinc.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_locale.h
+ "SDL_stdinc.h"
+ "SDL_error.h"
+ "begin_code.h"
+ "close_code.h"
+
+1733538930 c:\dev\sdl2-dev\i686-w64-mingw32\include\sdl2\sdl_misc.h
+ "SDL_stdinc.h"
+ "begin_code.h"
+ "close_code.h"
+
+1734515750 c:\dev\rcbasic4\rcbasic_build\rc_utility.h
+
+
+
+
+1734515750 c:\dev\rcbasic4\rcbasic_build\rc_debug.h
+
+1734515750 c:\dev\rcbasic4\rcbasic_build\keywords.h
+
+1734515750 c:\dev\rcbasic4\rcbasic_build\constants.h
+
+
+1734515750 c:\dev\rcbasic4\rcbasic_build\parser.h
+ "tokenizer.h"
+ "identifier.h"
+ "rc_global.h"
+ "constants.h"
+
+
+1734515750 c:\dev\rcbasic4\rcbasic_build\identifier.h
+
+
+ "rc_global.h"
+ "rc_utility.h"
+ "rc_debug.h"
+
+1734515750 c:\dev\rcbasic4\rcbasic_build\rc_global.h
+
+
+1734515750 c:\dev\rcbasic4\rcbasic_build\rc_builtin.h
+ "identifier.h"
+
+1734515750 c:\dev\rcbasic4\rcbasic_build\rc_vm_asm.h
+
+
+
+
+
+
+
+
+1734515750 c:\dev\rcbasic4\rcbasic_build\file_directory.h
+
+
+
+
+
+
+
+
+
+
+1734515750 c:\dev\rcbasic4\rcbasic_build\env_resolve.h
+
+
+
diff --git a/rcbasic_build/rcbasic_build_win.layout b/rcbasic_build/rcbasic_build_win.layout
new file mode 100644
index 0000000..d6bfc16
--- /dev/null
+++ b/rcbasic_build/rcbasic_build_win.layout
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/rcbasic_runtime/icon/rcbasic.ico b/rcbasic_runtime/icon/rcbasic.ico
new file mode 100644
index 0000000..8c08856
Binary files /dev/null and b/rcbasic_runtime/icon/rcbasic.ico differ
diff --git a/rcbasic_runtime/rc_gfx_core.h b/rcbasic_runtime/rc_gfx_core.h
index b9e73f7..152f81c 100644
--- a/rcbasic_runtime/rc_gfx_core.h
+++ b/rcbasic_runtime/rc_gfx_core.h
@@ -1,7 +1,7 @@
#ifndef RC_GFX_CORE_H_INCLUDED
#define RC_GFX_CORE_H_INCLUDED
-#if defined(RC_ANDROID) || defined(RC_WINDOWS)
+#if defined(RC_ANDROID)
#include "SDL.h"
#include "btBulletDynamicsCommon.h"
#include "BulletSoftBody/btSoftRigidDynamicsWorld.h"
diff --git a/rcbasic_runtime/rcbasic_runtime_win.cbp b/rcbasic_runtime/rcbasic_runtime_win.cbp
new file mode 100644
index 0000000..d09737c
--- /dev/null
+++ b/rcbasic_runtime/rcbasic_runtime_win.cbp
@@ -0,0 +1,179 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/rcbasic_runtime/rcbasic_runtime_win.depend b/rcbasic_runtime/rcbasic_runtime_win.depend
new file mode 100644
index 0000000..dbc506a
--- /dev/null
+++ b/rcbasic_runtime/rcbasic_runtime_win.depend
@@ -0,0 +1,3642 @@
+# depslib dependency file v1.0
+1734553082 source:c:\dev\irrbullet\src\irrbulletboxshape.cpp
+
+ "btBulletDynamicsCommon.h"
+ "btBulletCollisionCommon.h"
+ "irrBulletBoxShape.h"
+
+1734553077 c:\dev\rcirrlicht\include\iscenenode.h
+ "IAttributeExchangingObject.h"
+ "ESceneNodeTypes.h"
+ "ESceneNodeUpdateAbs.h"
+ "ECullingTypes.h"
+ "EDebugSceneTypes.h"
+ "ISceneNodeAnimator.h"
+ "ITriangleSelector.h"
+ "SMaterial.h"
+ "irrString.h"
+ "aabbox3d.h"
+ "matrix4.h"
+ "irrList.h"
+ "IAttributes.h"
+
+1734553077 c:\dev\rcirrlicht\include\iattributeexchangingobject.h
+ "IReferenceCounted.h"
+
+1734553077 c:\dev\rcirrlicht\include\ireferencecounted.h
+ "irrTypes.h"
+ "leakHunter.h"
+
+1734553077 c:\dev\rcirrlicht\include\irrtypes.h
+ "IrrCompileConfig.h"
+
+
+
+ "assert.h"
+
+
+
+1734553077 c:\dev\rcirrlicht\include\irrcompileconfig.h
+
+
+
+
+1734553077 c:\dev\rcirrlicht\include\leakhunter.h
+ "IrrCompileConfig.h"
+ "irrArray.h"
+
+1734553077 c:\dev\rcirrlicht\include\irrarray.h
+ "irrTypes.h"
+ "heapsort.h"
+ "irrAllocator.h"
+ "irrMath.h"
+
+1734553077 c:\dev\rcirrlicht\include\heapsort.h
+ "irrTypes.h"
+
+1734553077 c:\dev\rcirrlicht\include\irrallocator.h
+ "irrTypes.h"
+
+
+
+1734553077 c:\dev\rcirrlicht\include\irrmath.h
+ "IrrCompileConfig.h"
+ "irrTypes.h"
+
+
+
+
+
+1734553077 c:\dev\rcirrlicht\include\escenenodetypes.h
+ "irrTypes.h"
+
+1734553077 c:\dev\rcirrlicht\include\escenenodeupdateabs.h
+
+1734553077 c:\dev\rcirrlicht\include\ecullingtypes.h
+ "irrTypes.h"
+
+1734553077 c:\dev\rcirrlicht\include\edebugscenetypes.h
+
+1734553077 c:\dev\rcirrlicht\include\iscenenodeanimator.h
+ "ESceneNodeAnimatorTypes.h"
+ "IAttributeExchangingObject.h"
+ "IAttributes.h"
+ "IEventReceiver.h"
+
+1734553077 c:\dev\rcirrlicht\include\escenenodeanimatortypes.h
+
+1734553077 c:\dev\rcirrlicht\include\iattributes.h
+ "IReferenceCounted.h"
+ "SColor.h"
+ "vector3d.h"
+ "vector2d.h"
+ "line2d.h"
+ "line3d.h"
+ "triangle3d.h"
+ "position2d.h"
+ "rect.h"
+ "dimension2d.h"
+ "matrix4.h"
+ "quaternion.h"
+ "plane3d.h"
+ "triangle3d.h"
+ "line2d.h"
+ "line3d.h"
+ "irrString.h"
+ "irrArray.h"
+ "IXMLReader.h"
+ "IXMLWriter.h"
+ "EAttributes.h"
+ "path.h"
+
+1734553077 c:\dev\rcirrlicht\include\scolor.h
+ "irrTypes.h"
+ "irrMath.h"
+
+1734553077 c:\dev\rcirrlicht\include\vector3d.h
+ "irrMath.h"
+
+1734553077 c:\dev\rcirrlicht\include\vector2d.h
+ "irrMath.h"
+ "dimension2d.h"
+
+1734553077 c:\dev\rcirrlicht\include\dimension2d.h
+ "irrTypes.h"
+ "irrMath.h"
+
+1734553077 c:\dev\rcirrlicht\include\line2d.h
+ "irrTypes.h"
+ "vector2d.h"
+
+1734553077 c:\dev\rcirrlicht\include\line3d.h
+ "irrTypes.h"
+ "vector3d.h"
+
+1734553077 c:\dev\rcirrlicht\include\triangle3d.h
+ "vector3d.h"
+ "line3d.h"
+ "plane3d.h"
+ "aabbox3d.h"
+
+1734553077 c:\dev\rcirrlicht\include\plane3d.h
+ "irrMath.h"
+ "vector3d.h"
+
+1734553077 c:\dev\rcirrlicht\include\aabbox3d.h
+ "irrMath.h"
+ "plane3d.h"
+ "line3d.h"
+
+1734553077 c:\dev\rcirrlicht\include\position2d.h
+ "vector2d.h"
+
+1734553077 c:\dev\rcirrlicht\include\rect.h
+ "irrTypes.h"
+ "dimension2d.h"
+ "position2d.h"
+
+1734553077 c:\dev\rcirrlicht\include\matrix4.h
+ "irrMath.h"
+ "vector3d.h"
+ "vector2d.h"
+ "plane3d.h"
+ "aabbox3d.h"
+ "rect.h"
+ "irrString.h"
+
+1734553077 c:\dev\rcirrlicht\include\irrstring.h
+ "irrTypes.h"
+ "irrAllocator.h"
+ "irrMath.h"
+
+
+1734553077 c:\dev\rcirrlicht\include\quaternion.h
+ "irrTypes.h"
+ "irrMath.h"
+ "matrix4.h"
+ "vector3d.h"
+
+1734553077 c:\dev\rcirrlicht\include\ixmlreader.h
+ "IReferenceCounted.h"
+ "irrXML.h"
+
+1734553077 c:\dev\rcirrlicht\include\irrxml.h
+
+ "IrrCompileConfig.h"
+ "irrArray.h"
+ "irrString.h"
+
+
+
+
+
+
+1734553077 c:\dev\rcirrlicht\include\ixmlwriter.h
+ "IReferenceCounted.h"
+ "irrXML.h"
+
+1734553077 c:\dev\rcirrlicht\include\eattributes.h
+
+1734553077 c:\dev\rcirrlicht\include\path.h
+ "irrString.h"
+
+1734553077 c:\dev\rcirrlicht\include\ieventreceiver.h
+ "ILogger.h"
+ "Keycodes.h"
+ "irrString.h"
+
+1734553077 c:\dev\rcirrlicht\include\ilogger.h
+ "IReferenceCounted.h"
+
+1734553077 c:\dev\rcirrlicht\include\keycodes.h
+
+1734553077 c:\dev\rcirrlicht\include\itriangleselector.h
+ "IReferenceCounted.h"
+ "triangle3d.h"
+ "aabbox3d.h"
+ "matrix4.h"
+ "line3d.h"
+ "irrArray.h"
+
+1734553077 c:\dev\rcirrlicht\include\smaterial.h
+ "SColor.h"
+ "matrix4.h"
+ "irrMath.h"
+ "EMaterialTypes.h"
+ "EMaterialFlags.h"
+ "SMaterialLayer.h"
+
+1734553077 c:\dev\rcirrlicht\include\ematerialtypes.h
+
+1734553077 c:\dev\rcirrlicht\include\ematerialflags.h
+
+1734553077 c:\dev\rcirrlicht\include\smateriallayer.h
+ "matrix4.h"
+ "irrAllocator.h"
+
+1734553077 c:\dev\rcirrlicht\include\irrlist.h
+ "irrTypes.h"
+ "irrAllocator.h"
+ "irrMath.h"
+
+1734553100 c:\dev\bullet3\src\btbulletdynamicscommon.h
+ "btBulletCollisionCommon.h"
+ "BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h"
+ "BulletDynamics/Dynamics/btSimpleDynamicsWorld.h"
+ "BulletDynamics/Dynamics/btRigidBody.h"
+ "BulletDynamics/ConstraintSolver/btPoint2PointConstraint.h"
+ "BulletDynamics/ConstraintSolver/btHingeConstraint.h"
+ "BulletDynamics/ConstraintSolver/btConeTwistConstraint.h"
+ "BulletDynamics/ConstraintSolver/btGeneric6DofConstraint.h"
+ "BulletDynamics/ConstraintSolver/btSliderConstraint.h"
+ "BulletDynamics/ConstraintSolver/btGeneric6DofSpringConstraint.h"
+ "BulletDynamics/ConstraintSolver/btUniversalConstraint.h"
+ "BulletDynamics/ConstraintSolver/btHinge2Constraint.h"
+ "BulletDynamics/ConstraintSolver/btGearConstraint.h"
+ "BulletDynamics/ConstraintSolver/btFixedConstraint.h"
+ "BulletDynamics/ConstraintSolver/btSequentialImpulseConstraintSolver.h"
+ "BulletDynamics/Vehicle/btRaycastVehicle.h"
+
+1734553100 c:\dev\bullet3\src\btbulletcollisioncommon.h
+ "BulletCollision/CollisionDispatch/btCollisionWorld.h"
+ "BulletCollision/CollisionDispatch/btCollisionObject.h"
+ "BulletCollision/CollisionShapes/btBoxShape.h"
+ "BulletCollision/CollisionShapes/btSphereShape.h"
+ "BulletCollision/CollisionShapes/btCapsuleShape.h"
+ "BulletCollision/CollisionShapes/btCylinderShape.h"
+ "BulletCollision/CollisionShapes/btConeShape.h"
+ "BulletCollision/CollisionShapes/btStaticPlaneShape.h"
+ "BulletCollision/CollisionShapes/btConvexHullShape.h"
+ "BulletCollision/CollisionShapes/btTriangleMesh.h"
+ "BulletCollision/CollisionShapes/btConvexTriangleMeshShape.h"
+ "BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h"
+ "BulletCollision/CollisionShapes/btScaledBvhTriangleMeshShape.h"
+ "BulletCollision/CollisionShapes/btTriangleMeshShape.h"
+ "BulletCollision/CollisionShapes/btTriangleIndexVertexArray.h"
+ "BulletCollision/CollisionShapes/btCompoundShape.h"
+ "BulletCollision/CollisionShapes/btTetrahedronShape.h"
+ "BulletCollision/CollisionShapes/btEmptyShape.h"
+ "BulletCollision/CollisionShapes/btMultiSphereShape.h"
+ "BulletCollision/CollisionShapes/btUniformScalingShape.h"
+ "BulletCollision/CollisionDispatch/btSphereSphereCollisionAlgorithm.h"
+ "BulletCollision/CollisionDispatch/btDefaultCollisionConfiguration.h"
+ "BulletCollision/CollisionDispatch/btCollisionDispatcher.h"
+ "BulletCollision/BroadphaseCollision/btSimpleBroadphase.h"
+ "BulletCollision/BroadphaseCollision/btAxisSweep3.h"
+ "BulletCollision/BroadphaseCollision/btDbvtBroadphase.h"
+ "LinearMath/btQuaternion.h"
+ "LinearMath/btTransform.h"
+ "LinearMath/btDefaultMotionState.h"
+ "LinearMath/btQuickprof.h"
+ "LinearMath/btIDebugDraw.h"
+ "LinearMath/btSerializer.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisiondispatch\btcollisionworld.h
+ "LinearMath/btVector3.h"
+ "LinearMath/btTransform.h"
+ "btCollisionObject.h"
+ "btCollisionDispatcher.h"
+ "BulletCollision/BroadphaseCollision/btOverlappingPairCache.h"
+ "LinearMath/btAlignedObjectArray.h"
+
+1734553100 c:\dev\bullet3\src\linearmath\btvector3.h
+ "btScalar.h"
+ "btMinMax.h"
+ "btAlignedAllocator.h"
+
+1734553100 c:\dev\bullet3\src\linearmath\btscalar.h
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+1734553100 c:\dev\bullet3\src\linearmath\btminmax.h
+ "btScalar.h"
+
+1734553100 c:\dev\bullet3\src\linearmath\btalignedallocator.h
+ "btScalar.h"
+
+1734553100 c:\dev\bullet3\src\linearmath\bttransform.h
+ "btMatrix3x3.h"
+
+1734553100 c:\dev\bullet3\src\linearmath\btmatrix3x3.h
+ "btVector3.h"
+ "btQuaternion.h"
+
+
+1734553100 c:\dev\bullet3\src\linearmath\btquaternion.h
+ "btVector3.h"
+ "btQuadWord.h"
+
+1734553100 c:\dev\bullet3\src\linearmath\btquadword.h
+ "btScalar.h"
+ "btMinMax.h"
+
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisiondispatch\btcollisionobject.h
+ "LinearMath/btTransform.h"
+ "LinearMath/btMotionState.h"
+ "LinearMath/btAlignedAllocator.h"
+ "LinearMath/btAlignedObjectArray.h"
+
+1734553100 c:\dev\bullet3\src\linearmath\btmotionstate.h
+ "btTransform.h"
+
+1734553100 c:\dev\bullet3\src\linearmath\btalignedobjectarray.h
+ "btScalar.h"
+ "btAlignedAllocator.h"
+
+
+
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisiondispatch\btcollisiondispatcher.h
+ "BulletCollision/BroadphaseCollision/btDispatcher.h"
+ "BulletCollision/NarrowPhaseCollision/btPersistentManifold.h"
+ "BulletCollision/CollisionDispatch/btManifoldResult.h"
+ "BulletCollision/BroadphaseCollision/btBroadphaseProxy.h"
+ "LinearMath/btAlignedObjectArray.h"
+ "btCollisionCreateFunc.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\broadphasecollision\btdispatcher.h
+ "LinearMath/btScalar.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\narrowphasecollision\btpersistentmanifold.h
+ "LinearMath/btVector3.h"
+ "LinearMath/btTransform.h"
+ "btManifoldPoint.h"
+ "LinearMath/btAlignedAllocator.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\narrowphasecollision\btmanifoldpoint.h
+ "LinearMath/btVector3.h"
+ "LinearMath/btTransformUtil.h"
+ "physics_effects/base_level/solver/pfx_constraint_row.h"
+
+1734553100 c:\dev\bullet3\src\linearmath\bttransformutil.h
+ "btTransform.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisiondispatch\btmanifoldresult.h
+ "BulletCollision/NarrowPhaseCollision/btPersistentManifold.h"
+ "BulletCollision/NarrowPhaseCollision/btDiscreteCollisionDetectorInterface.h"
+ "LinearMath/btTransform.h"
+ "BulletCollision/CollisionDispatch/btCollisionObjectWrapper.h"
+ "BulletCollision/CollisionDispatch/btCollisionObject.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\narrowphasecollision\btdiscretecollisiondetectorinterface.h
+ "LinearMath/btTransform.h"
+ "LinearMath/btVector3.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisiondispatch\btcollisionobjectwrapper.h
+ "LinearMath/btScalar.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\broadphasecollision\btbroadphaseproxy.h
+ "LinearMath/btScalar.h"
+ "LinearMath/btVector3.h"
+ "LinearMath/btAlignedAllocator.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisiondispatch\btcollisioncreatefunc.h
+ "LinearMath/btAlignedObjectArray.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\broadphasecollision\btoverlappingpaircache.h
+ "btBroadphaseInterface.h"
+ "btBroadphaseProxy.h"
+ "btOverlappingPairCallback.h"
+ "LinearMath/btAlignedObjectArray.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\broadphasecollision\btbroadphaseinterface.h
+ "btBroadphaseProxy.h"
+ "LinearMath/btVector3.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\broadphasecollision\btoverlappingpaircallback.h
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\btboxshape.h
+ "btPolyhedralConvexShape.h"
+ "btCollisionMargin.h"
+ "BulletCollision/BroadphaseCollision/btBroadphaseProxy.h"
+ "LinearMath/btVector3.h"
+ "LinearMath/btMinMax.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\btpolyhedralconvexshape.h
+ "LinearMath/btMatrix3x3.h"
+ "btConvexInternalShape.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\btconvexinternalshape.h
+ "btConvexShape.h"
+ "LinearMath/btAabbUtil2.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\btconvexshape.h
+ "btCollisionShape.h"
+ "LinearMath/btVector3.h"
+ "LinearMath/btTransform.h"
+ "LinearMath/btMatrix3x3.h"
+ "btCollisionMargin.h"
+ "LinearMath/btAlignedAllocator.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\btcollisionshape.h
+ "LinearMath/btTransform.h"
+ "LinearMath/btVector3.h"
+ "LinearMath/btMatrix3x3.h"
+ "BulletCollision/BroadphaseCollision/btBroadphaseProxy.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\btcollisionmargin.h
+
+1734553100 c:\dev\bullet3\src\linearmath\btaabbutil2.h
+ "btTransform.h"
+ "btVector3.h"
+ "btMinMax.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\btsphereshape.h
+ "btConvexInternalShape.h"
+ "BulletCollision/BroadphaseCollision/btBroadphaseProxy.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\btcapsuleshape.h
+ "btConvexInternalShape.h"
+ "BulletCollision/BroadphaseCollision/btBroadphaseProxy.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\btcylindershape.h
+ "btBoxShape.h"
+ "BulletCollision/BroadphaseCollision/btBroadphaseProxy.h"
+ "LinearMath/btVector3.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\btconeshape.h
+ "btConvexInternalShape.h"
+ "BulletCollision/BroadphaseCollision/btBroadphaseProxy.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\btstaticplaneshape.h
+ "btConcaveShape.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\btconcaveshape.h
+ "btCollisionShape.h"
+ "BulletCollision/BroadphaseCollision/btBroadphaseProxy.h"
+ "btTriangleCallback.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\bttrianglecallback.h
+ "LinearMath/btVector3.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\btconvexhullshape.h
+ "btPolyhedralConvexShape.h"
+ "BulletCollision/BroadphaseCollision/btBroadphaseProxy.h"
+ "LinearMath/btAlignedObjectArray.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\bttrianglemesh.h
+ "btTriangleIndexVertexArray.h"
+ "LinearMath/btVector3.h"
+ "LinearMath/btAlignedObjectArray.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\bttriangleindexvertexarray.h
+ "btStridingMeshInterface.h"
+ "LinearMath/btAlignedObjectArray.h"
+ "LinearMath/btScalar.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\btstridingmeshinterface.h
+ "LinearMath/btVector3.h"
+ "btTriangleCallback.h"
+ "btConcaveShape.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\btconvextrianglemeshshape.h
+ "btPolyhedralConvexShape.h"
+ "BulletCollision/BroadphaseCollision/btBroadphaseProxy.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\btbvhtrianglemeshshape.h
+ "btTriangleMeshShape.h"
+ "btOptimizedBvh.h"
+ "LinearMath/btAlignedAllocator.h"
+ "btTriangleInfoMap.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\bttrianglemeshshape.h
+ "btConcaveShape.h"
+ "btStridingMeshInterface.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\btoptimizedbvh.h
+ "BulletCollision/BroadphaseCollision/btQuantizedBvh.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\broadphasecollision\btquantizedbvh.h
+
+
+ "LinearMath/btVector3.h"
+ "LinearMath/btAlignedAllocator.h"
+ "LinearMath/btAlignedAllocator.h"
+ "LinearMath/btAlignedObjectArray.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\bttriangleinfomap.h
+ "LinearMath/btHashMap.h"
+ "LinearMath/btSerializer.h"
+
+1734553100 c:\dev\bullet3\src\linearmath\bthashmap.h
+
+ "btAlignedObjectArray.h"
+
+1734553100 c:\dev\bullet3\src\linearmath\btserializer.h
+ "btScalar.h"
+ "btHashMap.h"
+
+
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\btscaledbvhtrianglemeshshape.h
+ "BulletCollision/CollisionShapes/btBvhTriangleMeshShape.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\btcompoundshape.h
+ "btCollisionShape.h"
+ "LinearMath/btVector3.h"
+ "LinearMath/btTransform.h"
+ "LinearMath/btMatrix3x3.h"
+ "btCollisionMargin.h"
+ "LinearMath/btAlignedObjectArray.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\bttetrahedronshape.h
+ "btPolyhedralConvexShape.h"
+ "BulletCollision/BroadphaseCollision/btBroadphaseProxy.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\btemptyshape.h
+ "btConcaveShape.h"
+ "LinearMath/btVector3.h"
+ "LinearMath/btTransform.h"
+ "LinearMath/btMatrix3x3.h"
+ "btCollisionMargin.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\btmultisphereshape.h
+ "btConvexInternalShape.h"
+ "BulletCollision/BroadphaseCollision/btBroadphaseProxy.h"
+ "LinearMath/btAlignedObjectArray.h"
+ "LinearMath/btAabbUtil2.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\btuniformscalingshape.h
+ "btConvexShape.h"
+ "BulletCollision/BroadphaseCollision/btBroadphaseProxy.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisiondispatch\btspherespherecollisionalgorithm.h
+ "btActivatingCollisionAlgorithm.h"
+ "BulletCollision/BroadphaseCollision/btBroadphaseProxy.h"
+ "BulletCollision/CollisionDispatch/btCollisionCreateFunc.h"
+ "btCollisionDispatcher.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisiondispatch\btactivatingcollisionalgorithm.h
+ "BulletCollision/BroadphaseCollision/btCollisionAlgorithm.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\broadphasecollision\btcollisionalgorithm.h
+ "LinearMath/btScalar.h"
+ "LinearMath/btAlignedObjectArray.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisiondispatch\btdefaultcollisionconfiguration.h
+ "btCollisionConfiguration.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisiondispatch\btcollisionconfiguration.h
+
+1734553100 c:\dev\bullet3\src\bulletcollision\broadphasecollision\btsimplebroadphase.h
+ "btOverlappingPairCache.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\broadphasecollision\btaxissweep3.h
+ "LinearMath/btVector3.h"
+ "btOverlappingPairCache.h"
+ "btBroadphaseInterface.h"
+ "btBroadphaseProxy.h"
+ "btOverlappingPairCallback.h"
+ "btDbvtBroadphase.h"
+ "btAxisSweep3Internal.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\broadphasecollision\btdbvtbroadphase.h
+ "BulletCollision/BroadphaseCollision/btDbvt.h"
+ "BulletCollision/BroadphaseCollision/btOverlappingPairCache.h"
+ "LinearMath/btQuickprof.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\broadphasecollision\btdbvt.h
+ "LinearMath/btAlignedObjectArray.h"
+ "LinearMath/btVector3.h"
+ "LinearMath/btTransform.h"
+ "LinearMath/btAabbUtil2.h"
+
+
+
+
+1734553100 c:\dev\bullet3\src\linearmath\btquickprof.h
+ "btScalar.h"
+
+ "btAlignedAllocator.h"
+
+
+1734553100 c:\dev\bullet3\src\bulletcollision\broadphasecollision\btaxissweep3internal.h
+ "LinearMath/btVector3.h"
+ "btOverlappingPairCache.h"
+ "btBroadphaseInterface.h"
+ "btBroadphaseProxy.h"
+ "btOverlappingPairCallback.h"
+ "btDbvtBroadphase.h"
+
+
+1734553100 c:\dev\bullet3\src\linearmath\btdefaultmotionstate.h
+ "btMotionState.h"
+
+1734553100 c:\dev\bullet3\src\linearmath\btidebugdraw.h
+ "btVector3.h"
+ "btTransform.h"
+
+1734553100 c:\dev\bullet3\src\bulletdynamics\dynamics\btdiscretedynamicsworld.h
+ "btDynamicsWorld.h"
+ "LinearMath/btAlignedObjectArray.h"
+ "LinearMath/btThreads.h"
+
+1734553100 c:\dev\bullet3\src\bulletdynamics\dynamics\btdynamicsworld.h
+ "BulletCollision/CollisionDispatch/btCollisionWorld.h"
+ "BulletDynamics/ConstraintSolver/btContactSolverInfo.h"
+
+1734553100 c:\dev\bullet3\src\bulletdynamics\constraintsolver\btcontactsolverinfo.h
+ "LinearMath/btScalar.h"
+
+1734553100 c:\dev\bullet3\src\linearmath\btthreads.h
+ "btScalar.h"
+
+1734553100 c:\dev\bullet3\src\bulletdynamics\dynamics\btsimpledynamicsworld.h
+ "btDynamicsWorld.h"
+
+1734553100 c:\dev\bullet3\src\bulletdynamics\dynamics\btrigidbody.h
+ "LinearMath/btAlignedObjectArray.h"
+ "LinearMath/btTransform.h"
+ "BulletCollision/BroadphaseCollision/btBroadphaseProxy.h"
+ "BulletCollision/CollisionDispatch/btCollisionObject.h"
+
+1734553100 c:\dev\bullet3\src\bulletdynamics\constraintsolver\btpoint2pointconstraint.h
+ "LinearMath/btVector3.h"
+ "btJacobianEntry.h"
+ "btTypedConstraint.h"
+
+1734553100 c:\dev\bullet3\src\bulletdynamics\constraintsolver\btjacobianentry.h
+ "LinearMath/btMatrix3x3.h"
+
+1734553100 c:\dev\bullet3\src\bulletdynamics\constraintsolver\bttypedconstraint.h
+ "LinearMath/btScalar.h"
+ "btSolverConstraint.h"
+ "BulletDynamics/Dynamics/btRigidBody.h"
+
+1734553100 c:\dev\bullet3\src\bulletdynamics\constraintsolver\btsolverconstraint.h
+ "LinearMath/btVector3.h"
+ "LinearMath/btMatrix3x3.h"
+ "btJacobianEntry.h"
+ "LinearMath/btAlignedObjectArray.h"
+ "btSolverBody.h"
+
+1734553100 c:\dev\bullet3\src\bulletdynamics\constraintsolver\btsolverbody.h
+ "LinearMath/btVector3.h"
+ "LinearMath/btMatrix3x3.h"
+ "LinearMath/btAlignedAllocator.h"
+ "LinearMath/btTransformUtil.h"
+
+1734553100 c:\dev\bullet3\src\bulletdynamics\constraintsolver\bthingeconstraint.h
+ "LinearMath/btVector3.h"
+ "btJacobianEntry.h"
+ "btTypedConstraint.h"
+
+1734553100 c:\dev\bullet3\src\bulletdynamics\constraintsolver\btconetwistconstraint.h
+ "LinearMath/btVector3.h"
+ "btJacobianEntry.h"
+ "btTypedConstraint.h"
+
+1734553100 c:\dev\bullet3\src\bulletdynamics\constraintsolver\btgeneric6dofconstraint.h
+ "LinearMath/btVector3.h"
+ "btJacobianEntry.h"
+ "btTypedConstraint.h"
+
+1734553100 c:\dev\bullet3\src\bulletdynamics\constraintsolver\btsliderconstraint.h
+ "LinearMath/btScalar.h"
+ "LinearMath/btVector3.h"
+ "btJacobianEntry.h"
+ "btTypedConstraint.h"
+
+1734553100 c:\dev\bullet3\src\bulletdynamics\constraintsolver\btgeneric6dofspringconstraint.h
+ "LinearMath/btVector3.h"
+ "btTypedConstraint.h"
+ "btGeneric6DofConstraint.h"
+
+1734553100 c:\dev\bullet3\src\bulletdynamics\constraintsolver\btuniversalconstraint.h
+ "LinearMath/btVector3.h"
+ "btTypedConstraint.h"
+ "btGeneric6DofConstraint.h"
+
+1734553100 c:\dev\bullet3\src\bulletdynamics\constraintsolver\bthinge2constraint.h
+ "LinearMath/btVector3.h"
+ "btTypedConstraint.h"
+ "btGeneric6DofSpring2Constraint.h"
+
+1734553100 c:\dev\bullet3\src\bulletdynamics\constraintsolver\btgeneric6dofspring2constraint.h
+ "LinearMath/btVector3.h"
+ "btJacobianEntry.h"
+ "btTypedConstraint.h"
+
+1734553100 c:\dev\bullet3\src\bulletdynamics\constraintsolver\btgearconstraint.h
+ "BulletDynamics/ConstraintSolver/btTypedConstraint.h"
+
+1734553100 c:\dev\bullet3\src\bulletdynamics\constraintsolver\btfixedconstraint.h
+ "btGeneric6DofSpring2Constraint.h"
+
+1734553100 c:\dev\bullet3\src\bulletdynamics\constraintsolver\btsequentialimpulseconstraintsolver.h
+ "BulletDynamics/ConstraintSolver/btTypedConstraint.h"
+ "BulletDynamics/ConstraintSolver/btContactSolverInfo.h"
+ "BulletDynamics/ConstraintSolver/btSolverBody.h"
+ "BulletDynamics/ConstraintSolver/btSolverConstraint.h"
+ "BulletCollision/NarrowPhaseCollision/btManifoldPoint.h"
+ "BulletDynamics/ConstraintSolver/btConstraintSolver.h"
+
+1734553100 c:\dev\bullet3\src\bulletdynamics\constraintsolver\btconstraintsolver.h
+ "LinearMath/btScalar.h"
+
+1734553100 c:\dev\bullet3\src\bulletdynamics\vehicle\btraycastvehicle.h
+ "BulletDynamics/Dynamics/btRigidBody.h"
+ "BulletDynamics/ConstraintSolver/btTypedConstraint.h"
+ "btVehicleRaycaster.h"
+ "LinearMath/btAlignedObjectArray.h"
+ "btWheelInfo.h"
+ "BulletDynamics/Dynamics/btActionInterface.h"
+
+1734553100 c:\dev\bullet3\src\bulletdynamics\vehicle\btvehicleraycaster.h
+ "LinearMath/btVector3.h"
+
+1734553100 c:\dev\bullet3\src\bulletdynamics\vehicle\btwheelinfo.h
+ "LinearMath/btVector3.h"
+ "LinearMath/btTransform.h"
+
+1734553100 c:\dev\bullet3\src\bulletdynamics\dynamics\btactioninterface.h
+ "LinearMath/btScalar.h"
+ "btRigidBody.h"
+
+1734553082 c:\dev\irrbullet\include\irrbulletboxshape.h
+ "irrBulletCollisionShape.h"
+
+1734553082 c:\dev\irrbullet\include\irrbulletcollisionshape.h
+
+
+
+
+
+ "irrBulletCommon.h"
+
+1734553082 c:\dev\irrbullet\include\irrbulletcommon.h
+
+
+
+ "irrBulletCompileConfig.h"
+
+1734553082 c:\dev\irrbullet\include\irrbulletcompileconfig.h
+
+1734553082 source:c:\dev\irrbullet\src\irrbulletbvhtrianglemeshshape.cpp
+
+
+ "irrBulletBvhTriangleMeshShape.h"
+
+1734553082 c:\dev\irrbullet\include\irrbulletbvhtrianglemeshshape.h
+ "irrBulletTriangleMeshShape.h"
+
+1734553082 c:\dev\irrbullet\include\irrbullettrianglemeshshape.h
+ "irrBulletCollisionShape.h"
+
+ "irrBulletCommon.h"
+
+1734553082 source:c:\dev\irrbullet\src\irrbulletcapsuleshape.cpp
+
+ "btBulletDynamicsCommon.h"
+ "btBulletCollisionCommon.h"
+ "irrBulletCapsuleShape.h"
+
+1734553082 c:\dev\irrbullet\include\irrbulletcapsuleshape.h
+ "irrBulletCollisionShape.h"
+
+1734553082 source:c:\dev\irrbullet\src\irrbulletcollisionobjectaffector.cpp
+
+ "irrBulletCollisionObjectAffector.h"
+ "irrBulletCompileConfig.h"
+
+1734553082 c:\dev\irrbullet\include\irrbulletcollisionobjectaffector.h
+
+
+1734553082 source:c:\dev\irrbullet\src\irrbulletcollisionshape.cpp
+
+
+
+ "irrBulletCollisionShape.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\gimpact\btgimpactcollisionalgorithm.h
+ "BulletCollision/CollisionDispatch/btActivatingCollisionAlgorithm.h"
+ "BulletCollision/BroadphaseCollision/btDispatcher.h"
+ "BulletCollision/BroadphaseCollision/btBroadphaseInterface.h"
+ "BulletCollision/NarrowPhaseCollision/btPersistentManifold.h"
+ "BulletCollision/BroadphaseCollision/btBroadphaseProxy.h"
+ "BulletCollision/CollisionDispatch/btCollisionCreateFunc.h"
+ "BulletCollision/CollisionDispatch/btCollisionDispatcher.h"
+ "LinearMath/btAlignedObjectArray.h"
+ "btGImpactShape.h"
+ "BulletCollision/CollisionShapes/btStaticPlaneShape.h"
+ "BulletCollision/CollisionShapes/btCompoundShape.h"
+ "BulletCollision/CollisionDispatch/btConvexConvexAlgorithm.h"
+ "LinearMath/btIDebugDraw.h"
+ "BulletCollision/CollisionDispatch/btCollisionObjectWrapper.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\gimpact\btgimpactshape.h
+ "BulletCollision/CollisionShapes/btCollisionShape.h"
+ "BulletCollision/CollisionShapes/btTriangleShape.h"
+ "BulletCollision/CollisionShapes/btStridingMeshInterface.h"
+ "BulletCollision/CollisionShapes/btCollisionMargin.h"
+ "BulletCollision/CollisionDispatch/btCollisionWorld.h"
+ "BulletCollision/CollisionShapes/btConcaveShape.h"
+ "BulletCollision/CollisionShapes/btTetrahedronShape.h"
+ "LinearMath/btVector3.h"
+ "LinearMath/btTransform.h"
+ "LinearMath/btMatrix3x3.h"
+ "LinearMath/btAlignedObjectArray.h"
+ "btGImpactQuantizedBvh.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisionshapes\bttriangleshape.h
+ "btConvexShape.h"
+ "btBoxShape.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\gimpact\btgimpactquantizedbvh.h
+ "btGImpactBvh.h"
+ "btQuantization.h"
+ "btGImpactQuantizedBvhStructs.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\gimpact\btgimpactbvh.h
+ "LinearMath/btAlignedObjectArray.h"
+ "btBoxCollision.h"
+ "btTriangleShapeEx.h"
+ "btGImpactBvhStructs.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\gimpact\btboxcollision.h
+ "LinearMath/btTransform.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\gimpact\bttriangleshapeex.h
+ "BulletCollision/CollisionShapes/btCollisionShape.h"
+ "BulletCollision/CollisionShapes/btTriangleShape.h"
+ "btBoxCollision.h"
+ "btClipPolygon.h"
+ "btGeometryOperations.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\gimpact\btclippolygon.h
+ "LinearMath/btTransform.h"
+ "LinearMath/btGeometryUtil.h"
+
+1734553100 c:\dev\bullet3\src\linearmath\btgeometryutil.h
+ "btVector3.h"
+ "btAlignedObjectArray.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\gimpact\btgeometryoperations.h
+ "btBoxCollision.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\gimpact\btgimpactbvhstructs.h
+ "LinearMath/btAlignedObjectArray.h"
+ "btBoxCollision.h"
+ "btTriangleShapeEx.h"
+ "gim_pair.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\gimpact\gim_pair.h
+
+1734553100 c:\dev\bullet3\src\bulletcollision\gimpact\btquantization.h
+ "LinearMath/btTransform.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\gimpact\btgimpactquantizedbvhstructs.h
+ "btGImpactBvh.h"
+ "btQuantization.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\collisiondispatch\btconvexconvexalgorithm.h
+ "btActivatingCollisionAlgorithm.h"
+ "BulletCollision/NarrowPhaseCollision/btGjkPairDetector.h"
+ "BulletCollision/NarrowPhaseCollision/btPersistentManifold.h"
+ "BulletCollision/BroadphaseCollision/btBroadphaseProxy.h"
+ "BulletCollision/NarrowPhaseCollision/btVoronoiSimplexSolver.h"
+ "btCollisionCreateFunc.h"
+ "btCollisionDispatcher.h"
+ "LinearMath/btTransformUtil.h"
+ "BulletCollision/NarrowPhaseCollision/btPolyhedralContactClipping.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\narrowphasecollision\btgjkpairdetector.h
+ "btDiscreteCollisionDetectorInterface.h"
+ "BulletCollision/CollisionShapes/btCollisionMargin.h"
+ "btSimplexSolverInterface.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\narrowphasecollision\btsimplexsolverinterface.h
+ "LinearMath/btVector3.h"
+ "btVoronoiSimplexSolver.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\narrowphasecollision\btvoronoisimplexsolver.h
+ "btSimplexSolverInterface.h"
+
+1734553100 c:\dev\bullet3\src\bulletcollision\narrowphasecollision\btpolyhedralcontactclipping.h
+ "LinearMath/btAlignedObjectArray.h"
+ "LinearMath/btTransform.h"
+ "btDiscreteCollisionDetectorInterface.h"
+
+1734553082 source:c:\dev\irrbullet\src\irrbulletcommon.cpp
+
+
+ "irrBulletRayCastVehicle.h"
+ "irrBulletCollisionObject.h"
+ "irrBulletCommon.h"
+
+1734553082 c:\dev\irrbullet\include\irrbulletraycastvehicle.h
+ "irrBulletCommon.h"
+ "IrrCompileConfig.h"
+
+
+
+1734553082 c:\dev\irrbullet\include\irrbulletcollisionobject.h
+ "irrBulletCommon.h"
+ "irrBulletCollisionShape.h"
+
+ "irrBulletCollisionObjectAffector.h"
+
+
+
+1734553082 source:c:\dev\irrbullet\src\irrbulletconeshape.cpp
+
+ "btBulletDynamicsCommon.h"
+ "btBulletCollisionCommon.h"
+ "irrBulletConeShape.h"
+
+1734553082 c:\dev\irrbullet\include\irrbulletconeshape.h
+ "irrBulletCollisionShape.h"
+
+1734553082 source:c:\dev\irrbullet\src\irrbulletconvexhullshape.cpp
+
+
+
+
+ "irrBulletCollisionShape.h"
+ "irrBulletConvexHullShape.h"
+
+1734553077 c:\dev\rcirrlicht\include\imesh.h
+ "IReferenceCounted.h"
+ "SMaterial.h"
+ "EHardwareBufferFlags.h"
+
+1734553077 c:\dev\rcirrlicht\include\ehardwarebufferflags.h
+
+1734553077 c:\dev\rcirrlicht\include\imeshbuffer.h
+ "IReferenceCounted.h"
+ "SMaterial.h"
+ "aabbox3d.h"
+ "S3DVertex.h"
+ "SVertexIndex.h"
+ "EHardwareBufferFlags.h"
+ "EPrimitiveTypes.h"
+ "EMeshBufferTypes.h"
+
+1734553077 c:\dev\rcirrlicht\include\s3dvertex.h
+ "vector3d.h"
+ "vector2d.h"
+ "SColor.h"
+
+1734553077 c:\dev\rcirrlicht\include\svertexindex.h
+ "irrTypes.h"
+
+1734553077 c:\dev\rcirrlicht\include\eprimitivetypes.h
+
+1734553077 c:\dev\rcirrlicht\include\emeshbuffertypes.h
+ "irrTypes.h"
+
+1734553082 c:\dev\irrbullet\include\irrbulletconvexhullshape.h
+ "irrBulletCommon.h"
+
+1734553082 source:c:\dev\irrbullet\src\irrbulletcylindershape.cpp
+
+ "btBulletDynamicsCommon.h"
+ "btBulletCollisionCommon.h"
+ "irrBulletCylinderShape.h"
+
+1734553082 c:\dev\irrbullet\include\irrbulletcylindershape.h
+ "irrBulletCollisionShape.h"
+
+1734553082 source:c:\dev\irrbullet\src\irrbulletgimpactmeshshape.cpp
+
+
+
+ "irrBulletGImpactMeshShape.h"
+
+1734553082 c:\dev\irrbullet\include\irrbulletgimpactmeshshape.h
+ "irrBulletCommon.h"
+
+ "irrBulletTriangleMeshShape.h"
+
+1734553082 source:c:\dev\irrbullet\src\irrbullet.cpp
+ "irrBullet.h"
+
+1734553082 c:\dev\irrbullet\include\irrbullet.h
+ "irrBulletCompileConfig.h"
+
+
+
+ "irrBulletCommon.h"
+ "irrBulletWorld.h"
+ "irrBulletBoxShape.h"
+ "irrBulletSphereShape.h"
+ "irrBulletConeShape.h"
+ "irrBulletCylinderShape.h"
+ "irrBulletCapsuleShape.h"
+ "irrBulletGImpactMeshShape.h"
+ "irrBulletBvhTriangleMeshShape.h"
+ "irrBulletConvexHullShape.h"
+ "irrBulletMotionState.h"
+ "irrBulletRayCastVehicle.h"
+ "irrBulletCollisionObjectAffector.h"
+ "irrBulletCollisionObjectAffectorDelete.h"
+ "irrBulletCollisionObjectAffectorAttract.h"
+ "irrBulletCollisionCallBackInformation.h"
+ "irrBulletLiquidBody.h"
+ "irrBulletKinematicCharacterController.h"
+
+1734553082 c:\dev\irrbullet\include\irrbulletworld.h
+ "irrBulletCommon.h"
+ "irrBulletRigidBody.h"
+ "irrBulletSoftBody.h"
+ "irrBulletGhostObject.h"
+ "irrBulletPhysicsDebug.h"
+
+ "irrBulletCollisionCallBackInformation.h"
+ "irrBulletCompileConfig.h"
+
+
+
+1734553082 c:\dev\irrbullet\include\irrbulletrigidbody.h
+ "irrBulletCommon.h"
+ "irrBulletCompileConfig.h"
+ "irrBulletCollisionObject.h"
+
+ "irrBulletRayCastVehicle.h"
+
+
+1734553082 c:\dev\irrbullet\include\irrbulletsoftbody.h
+ "irrBulletCollisionObject.h"
+
+
+
+