├── README.md ├── bin ├── game_archive.pl ├── imageservicectl.sh ├── imageserviced.pl ├── insert_article.pl ├── maint.pl ├── obfuscate.pl ├── setup_db.pl ├── storage.pl └── test_storage.pl ├── conf ├── Effect.xml ├── apache.conf ├── image_service.xml ├── initial_data_setup.xml └── obfuscate.xml ├── docs ├── about.txt ├── abuse.txt ├── assetmgr.txt ├── audio.txt ├── doxter.txt ├── fonts.txt ├── geometry.txt ├── installation.txt ├── keymouse.txt ├── level_editor.txt ├── localdev.txt ├── oop.txt ├── plugin_box2d.txt ├── plugin_truefont.txt ├── publishing.txt ├── sprites_tiles.txt ├── z_ref_audio.inc ├── z_ref_game.inc ├── z_ref_geometry.inc ├── z_ref_plane_other.inc ├── z_ref_portal.inc ├── z_ref_sprites.inc ├── z_ref_tiles.inc ├── z_ref_util.inc ├── z_reference.txt └── zz_getting_started.txt ├── htdocs ├── 1px.cur ├── EffectAudio.swf ├── EffectSoundPreview.swf ├── ZeroClipboard.swf ├── ZeroUpload.swf ├── article.psp.html ├── article_preview.html ├── article_print.psp.html ├── blank.html ├── code.psp.js ├── color_picker.css ├── doxter.css ├── engine │ ├── 1px.cur │ ├── EffectAudio.swf │ ├── hide_cursor.swf │ ├── init.html │ ├── plugins │ │ ├── Box2D │ │ │ ├── 1.0b-min.js │ │ │ └── 1.0b.js │ │ └── TrueFont │ │ │ └── 1.0b.js │ └── transparent.cur ├── error.psp.html ├── example.psp.html ├── fonts │ ├── gentilis.zip │ ├── helvetiker.zip │ └── optimer.zip ├── hide_cursor.swf ├── ie6.css ├── images │ ├── aquaprogressbar.gif │ ├── aquaprogressbar_bkgnd.gif │ ├── article_separator.png │ ├── big_icons │ │ ├── assets.png │ │ ├── briefcase.png │ │ ├── build.png │ │ ├── calc.png │ │ ├── camera.png │ │ ├── cd.png │ │ ├── cog.png │ │ ├── color_palette.png │ │ ├── disk.png │ │ ├── download.png │ │ ├── effect.png │ │ ├── email.png │ │ ├── folder.png │ │ ├── folder_game.png │ │ ├── fonts.png │ │ ├── home.png │ │ ├── info.png │ │ ├── key.png │ │ ├── keyboard.png │ │ ├── mobile.png │ │ ├── monitor.png │ │ ├── openid.png │ │ ├── paint_bucket.png │ │ ├── pencil.png │ │ ├── pencil_paper.png │ │ ├── pie_chart.png │ │ ├── recycle_bin.png │ │ ├── speaker.png │ │ ├── treasure.png │ │ ├── upload.png │ │ ├── video.png │ │ └── world.png │ ├── bkgnd.jpg │ ├── blank.gif │ ├── busy.gif │ ├── color-wheel.jpg │ ├── color_picker │ │ ├── SatVal.png │ │ ├── slide.gif │ │ └── slideHue.gif │ ├── cursors │ │ ├── crosshairs.cur │ │ ├── eraser.cur │ │ ├── eyedropper.cur │ │ ├── hand.cur │ │ ├── hand_closed.cur │ │ ├── hand_opened.cur │ │ ├── paintbucket.cur │ │ ├── pencil.cur │ │ ├── zoomdisabled.cur │ │ ├── zoomin.cur │ │ └── zoomout.cur │ ├── dialog1 │ │ ├── bottom.gif │ │ ├── bottom.png │ │ ├── bottom_left.gif │ │ ├── bottom_left.png │ │ ├── bottom_right.gif │ │ ├── bottom_right.png │ │ ├── left.gif │ │ ├── left.png │ │ ├── right.gif │ │ ├── right.png │ │ ├── top.gif │ │ ├── top.png │ │ ├── top_left.gif │ │ ├── top_left.png │ │ ├── top_right.gif │ │ └── top_right.png │ ├── dialog_border │ │ ├── CVS │ │ │ ├── Entries │ │ │ ├── Repository │ │ │ └── Root │ │ ├── bottom.png │ │ ├── bottom_left.png │ │ ├── bottom_right.png │ │ ├── left.png │ │ ├── right.png │ │ ├── top.png │ │ ├── top_left.png │ │ └── top_right.png │ ├── divider.gif │ ├── docs │ │ ├── assetmgr │ │ │ ├── move.png │ │ │ ├── rename.png │ │ │ └── transfer.png │ │ ├── audio │ │ │ ├── audacity_main_view.png │ │ │ ├── audacity_mp3_settings.png │ │ │ ├── audacity_save_as.png │ │ │ ├── itunes_encode_settings_1.png │ │ │ ├── itunes_encode_settings_2.png │ │ │ ├── itunes_library_after.png │ │ │ ├── itunes_library_before.png │ │ │ ├── itunes_menu_create_mp3.png │ │ │ ├── itunes_prefs_general.png │ │ │ └── stock_audio_assets.zip │ │ ├── fonts │ │ │ ├── bitmap_fonts.png │ │ │ └── create_font.png │ │ ├── getting_started │ │ │ ├── admin_page.png │ │ │ ├── assets_tab.png │ │ │ ├── audio_tab.png │ │ │ ├── develop_page.png │ │ │ ├── display_tab.png │ │ │ ├── game_tab.png │ │ │ ├── glog.png │ │ │ ├── keyboard_tab.png │ │ │ ├── levels_tab.png │ │ │ ├── missile1.gif │ │ │ ├── objects_tab.png │ │ │ ├── publish_tab.png │ │ │ └── running.png │ │ ├── keymouse │ │ │ ├── edit_keydef.png │ │ │ ├── in_game_edit.png │ │ │ └── keyboard_tab.png │ │ ├── level_editor │ │ │ ├── env_edit.png │ │ │ ├── env_exclusions.png │ │ │ ├── env_filter_blur.png │ │ │ ├── env_filter_color_fade.png │ │ │ ├── env_filter_contrast.png │ │ │ ├── env_filter_engrave.png │ │ │ ├── env_filter_find_edges.png │ │ │ ├── env_filter_gamma.png │ │ │ ├── env_filter_invert.png │ │ │ ├── env_filter_levels.png │ │ │ ├── env_filter_monochrome.png │ │ │ ├── env_filter_mosaic.png │ │ │ ├── env_filter_noise.png │ │ │ ├── env_filter_oil_paint.png │ │ │ ├── env_filter_palette.png │ │ │ ├── env_filter_posterize.png │ │ │ ├── env_filter_tint.png │ │ │ ├── env_list.png │ │ │ ├── env_sample_blur.jpg │ │ │ ├── env_sample_color_fade.jpg │ │ │ ├── env_sample_contrast.jpg │ │ │ ├── env_sample_engrave.jpg │ │ │ ├── env_sample_find_edges.jpg │ │ │ ├── env_sample_gamma.jpg │ │ │ ├── env_sample_invert.jpg │ │ │ ├── env_sample_levels.jpg │ │ │ ├── env_sample_monochrome.jpg │ │ │ ├── env_sample_mosaic.jpg │ │ │ ├── env_sample_night.jpg │ │ │ ├── env_sample_noise.jpg │ │ │ ├── env_sample_none.jpg │ │ │ ├── env_sample_oil_paint.jpg │ │ │ ├── env_sample_palette.jpg │ │ │ ├── env_sample_posterize.jpg │ │ │ ├── env_sample_tint.jpg │ │ │ ├── env_sprite_image.png │ │ │ ├── info_bkgnd.png │ │ │ ├── info_env.png │ │ │ ├── info_layers.png │ │ │ ├── info_props.png │ │ │ ├── info_res.png │ │ │ ├── info_sprites.png │ │ │ ├── level_prop_defs.png │ │ │ ├── map_add_tile_data_layer.png │ │ │ ├── map_example_sprite.png │ │ │ ├── map_example_tile_objs.png │ │ │ ├── map_example_tile_overlay.png │ │ │ ├── map_example_tiles.png │ │ │ ├── map_footer.png │ │ │ ├── map_header.png │ │ │ ├── map_inspector_edit.png │ │ │ ├── map_inspector_palette.png │ │ │ ├── map_layers_palette.png │ │ │ ├── map_layers_with_data.png │ │ │ ├── map_main_view.png │ │ │ ├── map_nav.png │ │ │ ├── map_pencil_draw_mode.png │ │ │ ├── map_sprite_class_edit.png │ │ │ ├── map_sprite_class_place.png │ │ │ ├── map_sprite_palette.png │ │ │ ├── map_tile_class_palette.png │ │ │ ├── map_tileset_palette.png │ │ │ └── purple-grad.gif │ │ ├── localdev │ │ │ ├── debug_console.png │ │ │ ├── localdev_page.png │ │ │ ├── mac_system_prefs_sharing.png │ │ │ ├── toolbar_bug.png │ │ │ └── win32_apache_setup1.png │ │ ├── plugins │ │ │ └── box2d │ │ │ │ └── screenshot.jpg │ │ ├── publish │ │ │ ├── effect_arcade.png │ │ │ ├── export_link.png │ │ │ ├── rel_notes.png │ │ │ ├── rev_editor.png │ │ │ ├── rev_options.png │ │ │ ├── toolbar_sharing.png │ │ │ ├── upload_button.png │ │ │ └── upload_code.png │ │ └── sprites_tiles │ │ │ ├── game_layers.png │ │ │ ├── game_screenshot.png │ │ │ ├── hedge_B.png │ │ │ ├── hedge_C.png │ │ │ ├── hedge_DBL.png │ │ │ ├── hedge_DBR.png │ │ │ ├── hedge_DTL.png │ │ │ ├── hedge_DTR.png │ │ │ ├── hedge_L.png │ │ │ ├── hedge_R.png │ │ │ ├── hedge_T.png │ │ │ ├── hedge_level.png │ │ │ ├── levedit_layers_sprites.png │ │ │ ├── levedit_layers_tiles.png │ │ │ ├── objects_sprites.png │ │ │ ├── objects_tiles.png │ │ │ ├── rocks_B.png │ │ │ ├── rocks_C.png │ │ │ ├── rocks_DBL.png │ │ │ ├── rocks_DBR.png │ │ │ ├── rocks_DTL.png │ │ │ ├── rocks_DTR.png │ │ │ ├── rocks_L.png │ │ │ ├── rocks_R.png │ │ │ ├── rocks_T.png │ │ │ ├── sprite_depends.png │ │ │ ├── sprite_fliph.png │ │ │ ├── sprite_fliphv.png │ │ │ ├── sprite_flipv.png │ │ │ ├── sprite_frames.png │ │ │ ├── sprite_props_define.png │ │ │ ├── sprite_props_levedit.png │ │ │ ├── sprite_res.png │ │ │ ├── sprite_rotate.png │ │ │ ├── sprite_rotatepad.png │ │ │ ├── sprite_scale.png │ │ │ ├── tile_props.png │ │ │ ├── tile_res.png │ │ │ ├── tileset_edit.png │ │ │ └── tilesets.png │ ├── doxter │ │ ├── example1.gif │ │ ├── file.gif │ │ ├── folder.gif │ │ ├── folder_open.gif │ │ ├── icon_external.png │ │ ├── icon_mailto.gif │ │ └── screenshot1.png │ ├── engine │ │ ├── dialog │ │ │ ├── bottom-dark.png │ │ │ ├── bottom-left-dark.png │ │ │ ├── bottom-left-light.png │ │ │ ├── bottom-left.png │ │ │ ├── bottom-light.png │ │ │ ├── bottom-right-dark.png │ │ │ ├── bottom-right-light.png │ │ │ ├── bottom-right.png │ │ │ ├── bottom.png │ │ │ ├── center-dark.png │ │ │ ├── center-light.png │ │ │ ├── center.png │ │ │ ├── dot-black.png │ │ │ ├── dot-white.png │ │ │ ├── dots-horiz-black.png │ │ │ ├── dots-horiz-flip-black.png │ │ │ ├── dots-horiz-flip-white.png │ │ │ ├── dots-horiz-white.png │ │ │ ├── dots-vert-black.png │ │ │ ├── dots-vert-flip-black.png │ │ │ ├── dots-vert-flip-white.png │ │ │ ├── dots-vert-white.png │ │ │ ├── facebook-logo.gif │ │ │ ├── left-dark.png │ │ │ ├── left-light.png │ │ │ ├── left.png │ │ │ ├── play.png │ │ │ ├── right-dark.png │ │ │ ├── right-light.png │ │ │ ├── right.png │ │ │ ├── titles.png │ │ │ ├── top-dark.png │ │ │ ├── top-left-dark.png │ │ │ ├── top-left-light.png │ │ │ ├── top-left.png │ │ │ ├── top-light.png │ │ │ ├── top-right-dark.png │ │ │ ├── top-right-light.png │ │ │ ├── top-right.png │ │ │ ├── top.png │ │ │ ├── twitter-logo.gif │ │ │ └── twitter-logo.png │ │ └── toolbar │ │ │ ├── background.png │ │ │ ├── border-left.png │ │ │ ├── border-right.png │ │ │ ├── divider.png │ │ │ ├── icons.png │ │ │ ├── loading-over.png │ │ │ ├── loading-under.png │ │ │ ├── logo.png │ │ │ ├── msgs.png │ │ │ ├── preview-for-dark-clrs.png │ │ │ └── preview-for-light-clrs.png │ ├── favicon.ico │ ├── font_preview_backgrounds │ │ ├── checkerboard.gif │ │ └── checkerboard_sm.gif │ ├── icons │ │ ├── accept.png │ │ ├── action.gif │ │ ├── add.gif │ │ ├── add.png │ │ ├── anchor.png │ │ ├── application_form.png │ │ ├── application_form_add.png │ │ ├── application_osx_terminal.png │ │ ├── application_view_detail.png │ │ ├── arrow-asc.gif │ │ ├── arrow-desc.gif │ │ ├── arrow-down.png │ │ ├── arrow-right.png │ │ ├── arrow_down.png │ │ ├── arrow_redo.png │ │ ├── arrow_refresh.png │ │ ├── arrow_turn_left.png │ │ ├── arrow_turn_right_2.png │ │ ├── arrow_undo.png │ │ ├── arrow_up.png │ │ ├── attachment.gif │ │ ├── bot_add.gif │ │ ├── brick.png │ │ ├── brick_add.png │ │ ├── brick_delete.png │ │ ├── brick_edit.png │ │ ├── brick_error.png │ │ ├── brick_go.png │ │ ├── brick_link.png │ │ ├── bricks.png │ │ ├── bricks_bw.png │ │ ├── bug.png │ │ ├── bug_add.png │ │ ├── bug_delete.png │ │ ├── bug_edit.png │ │ ├── bug_error.png │ │ ├── bug_go.png │ │ ├── bug_link.png │ │ ├── bullet_upload.png │ │ ├── busy.gif │ │ ├── calc.gif │ │ ├── calendar.gif │ │ ├── cancel.png │ │ ├── cd.gif │ │ ├── cd.png │ │ ├── cd_add.png │ │ ├── cd_delete.png │ │ ├── cd_edit.png │ │ ├── cd_go.png │ │ ├── chart_pie.png │ │ ├── check.gif │ │ ├── check_24.png │ │ ├── clipboard.gif │ │ ├── cog.png │ │ ├── cog_add.png │ │ ├── cog_delete.png │ │ ├── cog_edit.png │ │ ├── cog_error.png │ │ ├── cog_go.png │ │ ├── cogs.png │ │ ├── coins.png │ │ ├── coins_add.png │ │ ├── color_swatch.png │ │ ├── color_swatch_add.png │ │ ├── color_swatch_edit.png │ │ ├── color_wheel.png │ │ ├── comment.png │ │ ├── comment_add.png │ │ ├── comment_delete.png │ │ ├── comment_edit.png │ │ ├── component.gif │ │ ├── compress.png │ │ ├── computer.png │ │ ├── computer_go.png │ │ ├── contrast.png │ │ ├── contrast_add.png │ │ ├── control_pause.png │ │ ├── control_pause_gray.png │ │ ├── control_play.png │ │ ├── control_play_gray.png │ │ ├── control_stop.png │ │ ├── controller.gif │ │ ├── controller.png │ │ ├── controller_add.png │ │ ├── controller_delete.png │ │ ├── controller_error.png │ │ ├── controller_gray.png │ │ ├── cursor.png │ │ ├── delete.png │ │ ├── disk.png │ │ ├── doc.gif │ │ ├── edit.gif │ │ ├── email_edit.png │ │ ├── eraser.png │ │ ├── error.gif │ │ ├── error_24.png │ │ ├── eye.png │ │ ├── eye_closed.gif │ │ ├── eye_closed.png │ │ ├── eye_open.gif │ │ ├── eye_open.png │ │ ├── eyedropper.png │ │ ├── facebook.png │ │ ├── feed.png │ │ ├── file.gif │ │ ├── flag.gif │ │ ├── folder.gif │ │ ├── folder.png │ │ ├── folder_add.png │ │ ├── folder_go.png │ │ ├── folder_magnify.png │ │ ├── folder_open.gif │ │ ├── folder_open.png │ │ ├── folder_page.png │ │ ├── folder_page_white.png │ │ ├── folder_wrench.png │ │ ├── font.gif │ │ ├── group.png │ │ ├── hand.png │ │ ├── help.gif │ │ ├── home.gif │ │ ├── house.png │ │ ├── image.gif │ │ ├── image_edit.png │ │ ├── information.png │ │ ├── key.gif │ │ ├── keyboard.png │ │ ├── keyboard_add.png │ │ ├── keyboard_delete.png │ │ ├── keyboard_edit.png │ │ ├── keyboard_magnify.png │ │ ├── layers.png │ │ ├── layout.png │ │ ├── layout_add.png │ │ ├── layout_content.png │ │ ├── layout_delete.png │ │ ├── layout_edit.png │ │ ├── lightbulb.png │ │ ├── lock.gif │ │ ├── lock.png │ │ ├── lock2.gif │ │ ├── lock_edit.png │ │ ├── mail.gif │ │ ├── menu_contract.gif │ │ ├── menu_expand.gif │ │ ├── minus.gif │ │ ├── mobile.gif │ │ ├── money.png │ │ ├── money_dollar.png │ │ ├── monitor.png │ │ ├── mp3.gif │ │ ├── music.png │ │ ├── music_gray.png │ │ ├── music_off.png │ │ ├── music_off_gray.png │ │ ├── next.gif │ │ ├── next_disabled.gif │ │ ├── note.png │ │ ├── openid.gif │ │ ├── openid.png │ │ ├── package.png │ │ ├── package_add.png │ │ ├── package_delete.png │ │ ├── package_edit.png │ │ ├── package_go.png │ │ ├── package_green.png │ │ ├── package_link.png │ │ ├── page_white.png │ │ ├── page_white_acrobat.png │ │ ├── page_white_add.png │ │ ├── page_white_audio.png │ │ ├── page_white_cd.png │ │ ├── page_white_code.png │ │ ├── page_white_code_add.png │ │ ├── page_white_colorwheel.png │ │ ├── page_white_copy.png │ │ ├── page_white_edit.png │ │ ├── page_white_excel.png │ │ ├── page_white_flash.png │ │ ├── page_white_font.png │ │ ├── page_white_get.png │ │ ├── page_white_magnify.png │ │ ├── page_white_movie.png │ │ ├── page_white_paste.png │ │ ├── page_white_picture.png │ │ ├── page_white_put.png │ │ ├── page_white_text.png │ │ ├── page_white_text_add.png │ │ ├── page_white_upload.png │ │ ├── page_white_vector.png │ │ ├── page_white_word.png │ │ ├── page_white_wrench.png │ │ ├── page_white_zip.png │ │ ├── paintbrush.png │ │ ├── paintcan.png │ │ ├── palette.png │ │ ├── palette_add.png │ │ ├── palette_edit.png │ │ ├── pdf.gif │ │ ├── pencil.png │ │ ├── photo_add.png │ │ ├── picture_add.png │ │ ├── plugin.gif │ │ ├── plugin.png │ │ ├── plugin_add.png │ │ ├── plugin_delete.png │ │ ├── plugin_disabled.png │ │ ├── plugin_edit.png │ │ ├── plugin_error.png │ │ ├── plugin_go.png │ │ ├── plugin_link.png │ │ ├── plus.gif │ │ ├── preset.gif │ │ ├── prev.gif │ │ ├── prev_disabled.gif │ │ ├── print.gif │ │ ├── printer.png │ │ ├── project.gif │ │ ├── prop.gif │ │ ├── refresh.gif │ │ ├── refresh.png │ │ ├── resultset_first.png │ │ ├── resultset_last.png │ │ ├── resultset_next.png │ │ ├── resultset_previous.png │ │ ├── save.gif │ │ ├── script.gif │ │ ├── script.png │ │ ├── search.png │ │ ├── server.gif │ │ ├── server_down.gif │ │ ├── small │ │ │ ├── 1st.gif │ │ │ ├── 2nd.gif │ │ │ ├── 3rd.gif │ │ │ ├── BrandSpankingNew.net.webloc │ │ │ ├── arrow_collapse.gif │ │ │ ├── arrow_dash_down.gif │ │ │ ├── arrow_dash_left.gif │ │ │ ├── arrow_dash_right.gif │ │ │ ├── arrow_dash_up.gif │ │ │ ├── arrow_down.gif │ │ │ ├── arrow_expand.gif │ │ │ ├── arrow_fat_down.gif │ │ │ ├── arrow_fat_left.gif │ │ │ ├── arrow_fat_right.gif │ │ │ ├── arrow_fat_up.gif │ │ │ ├── arrow_left.gif │ │ │ ├── arrow_mini_down.gif │ │ │ ├── arrow_mini_left.gif │ │ │ ├── arrow_mini_right.gif │ │ │ ├── arrow_mini_up.gif │ │ │ ├── arrow_right.gif │ │ │ ├── arrow_up.gif │ │ │ ├── basket.gif │ │ │ ├── bell.gif │ │ │ ├── block.gif │ │ │ ├── bookmark.gif │ │ │ ├── bug.gif │ │ │ ├── button.gif │ │ │ ├── calendar.gif │ │ │ ├── calendar_day.gif │ │ │ ├── checkbox.gif │ │ │ ├── clipboard.gif │ │ │ ├── clipboard_full.gif │ │ │ ├── clock.gif │ │ │ ├── comment.gif │ │ │ ├── comment_left.gif │ │ │ ├── contract_horizontal.gif │ │ │ ├── contract_verical.gif │ │ │ ├── copy.gif │ │ │ ├── cross.gif │ │ │ ├── cube.gif │ │ │ ├── cut.gif │ │ │ ├── database.gif │ │ │ ├── document.gif │ │ │ ├── drop_box.gif │ │ │ ├── expand_horizontal.gif │ │ │ ├── expand_vertical.gif │ │ │ ├── field_hidden.gif │ │ │ ├── field_input.gif │ │ │ ├── field_password.gif │ │ │ ├── field_text.gif │ │ │ ├── field_textarea.gif │ │ │ ├── flag.gif │ │ │ ├── folder.gif │ │ │ ├── font_down.gif │ │ │ ├── font_lowercase.gif │ │ │ ├── font_up.gif │ │ │ ├── font_uppercase.gif │ │ │ ├── globe.gif │ │ │ ├── graph.gif │ │ │ ├── happy.gif │ │ │ ├── heading1.gif │ │ │ ├── heading2.gif │ │ │ ├── heading3.gif │ │ │ ├── heading4.gif │ │ │ ├── heading5.gif │ │ │ ├── heading6.gif │ │ │ ├── heart.gif │ │ │ ├── heart_broken.gif │ │ │ ├── home.gif │ │ │ ├── ident_in.gif │ │ │ ├── image.gif │ │ │ ├── indent_out.gif │ │ │ ├── index_card.gif │ │ │ ├── key.gif │ │ │ ├── linespace_decrease.gif │ │ │ ├── linespace_increase.gif │ │ │ ├── list_ordered.gif │ │ │ ├── list_unordered.gif │ │ │ ├── lock.gif │ │ │ ├── magnify.gif │ │ │ ├── magnify_minus.gif │ │ │ ├── magnify_plus.gif │ │ │ ├── mail.gif │ │ │ ├── mail_back.gif │ │ │ ├── mail_open.gif │ │ │ ├── merge.gif │ │ │ ├── minus.gif │ │ │ ├── mobile.gif │ │ │ ├── paste.gif │ │ │ ├── pencil.gif │ │ │ ├── person.gif │ │ │ ├── plugin.gif │ │ │ ├── plus.gif │ │ │ ├── printer.gif │ │ │ ├── pulldown.gif │ │ │ ├── quote.gif │ │ │ ├── radio.gif │ │ │ ├── sad.gif │ │ │ ├── save.gif │ │ │ ├── script.gif │ │ │ ├── shield.gif │ │ │ ├── sound.gif │ │ │ ├── sound_on.gif │ │ │ ├── split.gif │ │ │ ├── star.gif │ │ │ ├── table.gif │ │ │ ├── tag.gif │ │ │ ├── tick.gif │ │ │ ├── transmission.gif │ │ │ ├── trash.gif │ │ │ ├── turn_left.gif │ │ │ ├── turn_right.gif │ │ │ ├── wand.gif │ │ │ └── warning.gif │ │ ├── sound.gif │ │ ├── sound.png │ │ ├── sound_add.png │ │ ├── sound_delete.png │ │ ├── sound_gray.png │ │ ├── sound_low.png │ │ ├── sound_mute.png │ │ ├── sound_none.png │ │ ├── sound_off.gif │ │ ├── sound_off.png │ │ ├── sound_off_gray.png │ │ ├── star.png │ │ ├── star_gray.png │ │ ├── stop.gif │ │ ├── style.png │ │ ├── style_add.png │ │ ├── style_delete.png │ │ ├── style_edit.png │ │ ├── style_go.png │ │ ├── subtract.gif │ │ ├── table.png │ │ ├── table_add.png │ │ ├── tag.png │ │ ├── tag_blue.png │ │ ├── tag_gray.png │ │ ├── talk.gif │ │ ├── telephone.png │ │ ├── telephone_add.png │ │ ├── telephone_delete.png │ │ ├── telephone_edit.png │ │ ├── telephone_error.png │ │ ├── telephone_go.png │ │ ├── telephone_key.png │ │ ├── telephone_link.png │ │ ├── text.gif │ │ ├── text_bold.png │ │ ├── text_heading_1.png │ │ ├── text_heading_2.png │ │ ├── text_heading_3.png │ │ ├── text_heading_4.png │ │ ├── text_heading_5.png │ │ ├── text_indent.png │ │ ├── text_indent_remove.png │ │ ├── text_italic.png │ │ ├── text_list_bullets.png │ │ ├── text_list_numbers.png │ │ ├── thread.gif │ │ ├── thread_folder.gif │ │ ├── thread_folder_open.gif │ │ ├── timer.gif │ │ ├── trash.gif │ │ ├── twitter.png │ │ ├── typing.gif │ │ ├── unlock.gif │ │ ├── unlock2.gif │ │ ├── user.gif │ │ ├── user_add.png │ │ ├── user_add2.png │ │ ├── user_edit.png │ │ ├── weather.png │ │ ├── weather_add.png │ │ ├── weather_edit.png │ │ ├── webcam.gif │ │ ├── webcam.png │ │ ├── world.png │ │ ├── world_add.png │ │ ├── world_edit.png │ │ ├── world_link.png │ │ ├── wrench.png │ │ ├── x.gif │ │ ├── xls.gif │ │ ├── zip.gif │ │ ├── zoom.gif │ │ ├── zoom.png │ │ └── zoom_gray.png │ ├── info_32.png │ ├── info_48.png │ ├── info_64.png │ ├── level_editor │ │ └── scrollbar │ │ │ ├── arrow-down-active.png │ │ │ ├── arrow-down.png │ │ │ ├── arrow-left-active.png │ │ │ ├── arrow-left.png │ │ │ ├── arrow-right-active.png │ │ │ ├── arrow-right.png │ │ │ ├── arrow-up-active.png │ │ │ ├── arrow-up.png │ │ │ ├── bkgnd-horiz-center.png │ │ │ ├── bkgnd-horiz-left.png │ │ │ ├── bkgnd-horiz-right.png │ │ │ ├── bkgnd-vert-bottom.png │ │ │ ├── bkgnd-vert-center.png │ │ │ ├── bkgnd-vert-top.png │ │ │ ├── thumb-horiz-center.png │ │ │ ├── thumb-horiz-left.png │ │ │ ├── thumb-horiz-right.png │ │ │ ├── thumb-vert-bottom.png │ │ │ ├── thumb-vert-center.png │ │ │ └── thumb-vert-top.png │ ├── loading.gif │ ├── logo_40.gif │ ├── logo_40.png │ ├── logo_60.gif │ ├── logo_60.png │ ├── logo_80.gif │ ├── logo_80.png │ ├── logo_80_60.gif │ ├── logo_80_60.png │ ├── logo_80_80.png │ ├── logo_inverse_glow.png │ ├── logo_inverse_glow_75pct.png │ ├── logo_inverse_glow_half.png │ ├── main_page │ │ ├── featured_game_overlay-150px.png │ │ ├── featured_game_overlay-175px.png │ │ └── featured_game_overlay.png │ ├── nav │ │ ├── bkgnd.png │ │ ├── bkgnd2.gif │ │ ├── bkgnd2.png │ │ ├── left.gif │ │ ├── left.png │ │ ├── right.gif │ │ ├── right.png │ │ ├── separator.gif │ │ └── separator.png │ ├── nav_br.gif │ ├── no_preview_avail.jpg │ ├── pixel.gif │ ├── rev_box │ │ ├── bottom.png │ │ ├── bottom_left.png │ │ ├── bottom_right.png │ │ ├── left.png │ │ ├── right.png │ │ ├── top.png │ │ ├── top_left.png │ │ └── top_right.png │ ├── rev_button │ │ ├── left.png │ │ ├── middle.png │ │ └── right.png │ ├── rev_header │ │ ├── bottom.png │ │ ├── bottom_left.png │ │ ├── bottom_right.png │ │ ├── left.png │ │ ├── right.png │ │ ├── top.png │ │ ├── top_left.png │ │ └── top_right.png │ ├── shadow_border │ │ ├── bottom.gif │ │ ├── bottom_left.gif │ │ ├── bottom_right.gif │ │ ├── left.gif │ │ ├── right.gif │ │ ├── top.gif │ │ ├── top_left.gif │ │ └── top_right.gif │ ├── sidebar │ │ ├── facebook_24.png │ │ └── twitter_24.png │ ├── sp.gif │ ├── spacer.gif │ ├── speech_bubbles │ │ ├── blue_bl.png │ │ ├── blue_bm.png │ │ ├── blue_br.png │ │ ├── blue_mi.png │ │ ├── blue_ml.png │ │ ├── blue_mr.png │ │ ├── blue_tl.png │ │ ├── blue_tm.png │ │ ├── blue_tr.png │ │ ├── green_bl.png │ │ ├── green_bm.png │ │ ├── green_br.png │ │ ├── green_mi.png │ │ ├── green_ml.png │ │ ├── green_mr.png │ │ ├── green_tl.png │ │ ├── green_tm.png │ │ ├── green_tr.png │ │ ├── grey_bl.png │ │ ├── grey_bm.png │ │ ├── grey_br.png │ │ ├── grey_mi.png │ │ ├── grey_ml.png │ │ ├── grey_mr.png │ │ ├── grey_tl.png │ │ ├── grey_tm.png │ │ └── grey_tr.png │ ├── stock_avatars │ │ ├── default.gif │ │ ├── default.png │ │ ├── error.gif │ │ └── error.png │ ├── title │ │ ├── background.jpg │ │ ├── effectgames.png │ │ ├── grad.jpg │ │ ├── logo.gif │ │ ├── logo.png │ │ ├── nav_next.png │ │ ├── nav_prev.png │ │ ├── shadow.png │ │ └── slideshow │ │ │ ├── assets.png │ │ │ ├── audio.png │ │ │ ├── env.png │ │ │ ├── font.png │ │ │ ├── game.png │ │ │ ├── level.png │ │ │ ├── main.png │ │ │ └── tileset.png │ ├── white-grad-right.png │ ├── white-grad-small-flip-25.png │ ├── white-grad-small-flip.png │ ├── white-grad-small.png │ └── white-grad.png ├── index.psp.html ├── js │ ├── Debug.class.js │ ├── Page.class.js │ ├── PageManager.class.js │ ├── ZeroClipboard.js │ ├── ZeroUpload.js │ ├── api.js │ ├── blog.js │ ├── comments.js │ ├── effect.js │ ├── growl.js │ ├── lib │ │ ├── ajax.js │ │ ├── cookie.js │ │ ├── event.js │ │ ├── high_ascii.js │ │ ├── md5.js │ │ ├── oop.js │ │ ├── tools.js │ │ ├── word_wrap.js │ │ └── xml.js │ ├── menu.js │ ├── nav.js │ ├── pages │ │ ├── admin.js │ │ ├── article.js │ │ ├── assets.js │ │ ├── assets │ │ │ ├── api.js │ │ │ ├── clip.js │ │ │ ├── copy.js │ │ │ ├── delete.js │ │ │ ├── main.js │ │ │ ├── new_file.js │ │ │ ├── new_folder.js │ │ │ ├── rename.js │ │ │ ├── transfer.js │ │ │ └── upload.js │ │ ├── audio.js │ │ ├── contact.js │ │ ├── develop.js │ │ ├── display.js │ │ ├── game.js │ │ ├── keyboard.js │ │ ├── levels.js │ │ ├── levels │ │ │ ├── conflict.js │ │ │ ├── edit_info.js │ │ │ ├── edit_map.js │ │ │ ├── env.js │ │ │ ├── layers.js │ │ │ ├── palettes.js │ │ │ ├── palettes │ │ │ │ ├── inspector.js │ │ │ │ ├── layers.js │ │ │ │ ├── navigator.js │ │ │ │ ├── sprites.js │ │ │ │ ├── tile_objs.js │ │ │ │ └── tileset.js │ │ │ ├── scrollbar.js │ │ │ ├── toolbar.js │ │ │ ├── toolbar │ │ │ │ ├── eraser.js │ │ │ │ ├── eyedropper.js │ │ │ │ ├── hand.js │ │ │ │ ├── paintbucket.js │ │ │ │ ├── pencil.js │ │ │ │ └── pointer.js │ │ │ └── undo.js │ │ ├── main.js │ │ ├── objects.js │ │ ├── objects │ │ │ ├── fonts.js │ │ │ ├── sprites.js │ │ │ ├── tiles.js │ │ │ └── tilesets.js │ │ ├── placeholder_gen.js │ │ ├── publish.js │ │ ├── search.js │ │ ├── ticket.js │ │ └── user.js │ ├── render.js │ ├── tools │ │ ├── asset_dialog.js │ │ ├── color_picker.js │ │ ├── prop_editor.js │ │ ├── res_editor.js │ │ ├── slider.js │ │ ├── sound.js │ │ └── sprite_req_editor.js │ ├── upload.js │ └── webcam.js ├── level.psp.html ├── main.css ├── play.psp.html ├── quickplay.psp.html ├── sounds │ └── shutter.mp3 ├── style.psp.css ├── textedit.psp.html ├── transparent.cur └── webcam.swf ├── lib ├── Doxter.pm ├── Effect.pm ├── Effect │ ├── Article.pm │ ├── Assets.pm │ ├── Comments.pm │ ├── Daemon.pm │ ├── Game.pm │ ├── GameObjects.pm │ ├── GameRevisions.pm │ ├── ImageRemote.pm │ ├── ImageService │ │ ├── Plugin.pm │ │ └── Plugin │ │ │ ├── EnvPreview.pm │ │ │ ├── FontGrid.pm │ │ │ ├── FontMetrics.pm │ │ │ ├── GameImage.pm │ │ │ ├── LevelPreview.pm │ │ │ ├── Mogrify.pm │ │ │ ├── NavBackground.pm │ │ │ ├── Navigator.pm │ │ │ ├── New.pm │ │ │ ├── OggCreate.pm │ │ │ ├── Placeholder.pm │ │ │ ├── RevisionExport.pm │ │ │ ├── Set.pm │ │ │ ├── Text.pm │ │ │ ├── TwitterGlog.pm │ │ │ └── Zoom.pm │ ├── Session.pm │ ├── Storage.pm │ ├── Ticket.pm │ └── User.pm └── XML │ ├── API.pm │ ├── API │ ├── Log.pm │ ├── Perf.pm │ └── Tools.pm │ ├── Cache.pm │ └── Lite.pm └── src ├── Audio.as ├── Audio.js ├── Audio ├── Flash.js ├── Native.js └── Titanium.js ├── Debug.class.js ├── FontLoader.js ├── Game.js ├── ImageLoader.js ├── LevelLoader.js ├── Plane.js ├── Plane ├── HUD.js ├── SpritePlane.js ├── TilePlane.js └── VideoPlane.js ├── Portal.js ├── ProgressDialog.js ├── Sprite.js ├── Sprite ├── CustomSprite.js ├── MultiSprite.js ├── StaticImageSprite.js └── TextSprite.js ├── Tile.js ├── Toolbar.js ├── Toolbar ├── Debug.js ├── Divider.js ├── Home.js ├── Icon.js ├── Keyboard.js ├── Music.js ├── PlayPause.js ├── Share.js ├── Sound.js └── Zoom.js ├── Tween.js ├── Video.js ├── Video ├── Flash.js ├── Native.js └── QuickTime.js ├── XMLLoader.js ├── cookie.js ├── init.js ├── oop.js ├── utils.js └── xml.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/README.md -------------------------------------------------------------------------------- /bin/game_archive.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/bin/game_archive.pl -------------------------------------------------------------------------------- /bin/imageservicectl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/bin/imageservicectl.sh -------------------------------------------------------------------------------- /bin/imageserviced.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/bin/imageserviced.pl -------------------------------------------------------------------------------- /bin/insert_article.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/bin/insert_article.pl -------------------------------------------------------------------------------- /bin/maint.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/bin/maint.pl -------------------------------------------------------------------------------- /bin/obfuscate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/bin/obfuscate.pl -------------------------------------------------------------------------------- /bin/setup_db.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/bin/setup_db.pl -------------------------------------------------------------------------------- /bin/storage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/bin/storage.pl -------------------------------------------------------------------------------- /bin/test_storage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/bin/test_storage.pl -------------------------------------------------------------------------------- /conf/Effect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/conf/Effect.xml -------------------------------------------------------------------------------- /conf/apache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/conf/apache.conf -------------------------------------------------------------------------------- /conf/image_service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/conf/image_service.xml -------------------------------------------------------------------------------- /conf/initial_data_setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/conf/initial_data_setup.xml -------------------------------------------------------------------------------- /conf/obfuscate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/conf/obfuscate.xml -------------------------------------------------------------------------------- /docs/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/docs/about.txt -------------------------------------------------------------------------------- /docs/abuse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/docs/abuse.txt -------------------------------------------------------------------------------- /docs/assetmgr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/docs/assetmgr.txt -------------------------------------------------------------------------------- /docs/audio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/docs/audio.txt -------------------------------------------------------------------------------- /docs/doxter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/docs/doxter.txt -------------------------------------------------------------------------------- /docs/fonts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/docs/fonts.txt -------------------------------------------------------------------------------- /docs/geometry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/docs/geometry.txt -------------------------------------------------------------------------------- /docs/installation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/docs/installation.txt -------------------------------------------------------------------------------- /docs/keymouse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/docs/keymouse.txt -------------------------------------------------------------------------------- /docs/level_editor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/docs/level_editor.txt -------------------------------------------------------------------------------- /docs/localdev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/docs/localdev.txt -------------------------------------------------------------------------------- /docs/oop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/docs/oop.txt -------------------------------------------------------------------------------- /docs/plugin_box2d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/docs/plugin_box2d.txt -------------------------------------------------------------------------------- /docs/plugin_truefont.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/docs/plugin_truefont.txt -------------------------------------------------------------------------------- /docs/publishing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/docs/publishing.txt -------------------------------------------------------------------------------- /docs/sprites_tiles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/docs/sprites_tiles.txt -------------------------------------------------------------------------------- /docs/z_ref_audio.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/docs/z_ref_audio.inc -------------------------------------------------------------------------------- /docs/z_ref_game.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/docs/z_ref_game.inc -------------------------------------------------------------------------------- /docs/z_ref_geometry.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/docs/z_ref_geometry.inc -------------------------------------------------------------------------------- /docs/z_ref_plane_other.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/docs/z_ref_plane_other.inc -------------------------------------------------------------------------------- /docs/z_ref_portal.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/docs/z_ref_portal.inc -------------------------------------------------------------------------------- /docs/z_ref_sprites.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/docs/z_ref_sprites.inc -------------------------------------------------------------------------------- /docs/z_ref_tiles.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/docs/z_ref_tiles.inc -------------------------------------------------------------------------------- /docs/z_ref_util.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/docs/z_ref_util.inc -------------------------------------------------------------------------------- /docs/z_reference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/docs/z_reference.txt -------------------------------------------------------------------------------- /docs/zz_getting_started.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/docs/zz_getting_started.txt -------------------------------------------------------------------------------- /htdocs/1px.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/1px.cur -------------------------------------------------------------------------------- /htdocs/EffectAudio.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/EffectAudio.swf -------------------------------------------------------------------------------- /htdocs/EffectSoundPreview.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/EffectSoundPreview.swf -------------------------------------------------------------------------------- /htdocs/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/ZeroClipboard.swf -------------------------------------------------------------------------------- /htdocs/ZeroUpload.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/ZeroUpload.swf -------------------------------------------------------------------------------- /htdocs/article.psp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/article.psp.html -------------------------------------------------------------------------------- /htdocs/article_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/article_preview.html -------------------------------------------------------------------------------- /htdocs/article_print.psp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/article_print.psp.html -------------------------------------------------------------------------------- /htdocs/blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/blank.html -------------------------------------------------------------------------------- /htdocs/code.psp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/code.psp.js -------------------------------------------------------------------------------- /htdocs/color_picker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/color_picker.css -------------------------------------------------------------------------------- /htdocs/doxter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/doxter.css -------------------------------------------------------------------------------- /htdocs/engine/1px.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/engine/1px.cur -------------------------------------------------------------------------------- /htdocs/engine/EffectAudio.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/engine/EffectAudio.swf -------------------------------------------------------------------------------- /htdocs/engine/hide_cursor.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/engine/hide_cursor.swf -------------------------------------------------------------------------------- /htdocs/engine/init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/engine/init.html -------------------------------------------------------------------------------- /htdocs/engine/plugins/Box2D/1.0b-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/engine/plugins/Box2D/1.0b-min.js -------------------------------------------------------------------------------- /htdocs/engine/plugins/Box2D/1.0b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/engine/plugins/Box2D/1.0b.js -------------------------------------------------------------------------------- /htdocs/engine/plugins/TrueFont/1.0b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/engine/plugins/TrueFont/1.0b.js -------------------------------------------------------------------------------- /htdocs/engine/transparent.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/engine/transparent.cur -------------------------------------------------------------------------------- /htdocs/error.psp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/error.psp.html -------------------------------------------------------------------------------- /htdocs/example.psp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/example.psp.html -------------------------------------------------------------------------------- /htdocs/fonts/gentilis.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/fonts/gentilis.zip -------------------------------------------------------------------------------- /htdocs/fonts/helvetiker.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/fonts/helvetiker.zip -------------------------------------------------------------------------------- /htdocs/fonts/optimer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/fonts/optimer.zip -------------------------------------------------------------------------------- /htdocs/hide_cursor.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/hide_cursor.swf -------------------------------------------------------------------------------- /htdocs/ie6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/ie6.css -------------------------------------------------------------------------------- /htdocs/images/aquaprogressbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/aquaprogressbar.gif -------------------------------------------------------------------------------- /htdocs/images/aquaprogressbar_bkgnd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/aquaprogressbar_bkgnd.gif -------------------------------------------------------------------------------- /htdocs/images/article_separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/article_separator.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/assets.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/briefcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/briefcase.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/build.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/calc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/calc.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/camera.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/cd.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/cog.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/color_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/color_palette.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/disk.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/download.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/effect.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/email.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/folder.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/folder_game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/folder_game.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/fonts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/fonts.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/home.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/info.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/key.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/keyboard.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/mobile.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/monitor.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/openid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/openid.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/paint_bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/paint_bucket.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/pencil.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/pencil_paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/pencil_paper.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/pie_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/pie_chart.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/recycle_bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/recycle_bin.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/speaker.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/treasure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/treasure.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/upload.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/video.png -------------------------------------------------------------------------------- /htdocs/images/big_icons/world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/big_icons/world.png -------------------------------------------------------------------------------- /htdocs/images/bkgnd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/bkgnd.jpg -------------------------------------------------------------------------------- /htdocs/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/blank.gif -------------------------------------------------------------------------------- /htdocs/images/busy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/busy.gif -------------------------------------------------------------------------------- /htdocs/images/color-wheel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/color-wheel.jpg -------------------------------------------------------------------------------- /htdocs/images/color_picker/SatVal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/color_picker/SatVal.png -------------------------------------------------------------------------------- /htdocs/images/color_picker/slide.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/color_picker/slide.gif -------------------------------------------------------------------------------- /htdocs/images/color_picker/slideHue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/color_picker/slideHue.gif -------------------------------------------------------------------------------- /htdocs/images/cursors/crosshairs.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/cursors/crosshairs.cur -------------------------------------------------------------------------------- /htdocs/images/cursors/eraser.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/cursors/eraser.cur -------------------------------------------------------------------------------- /htdocs/images/cursors/eyedropper.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/cursors/eyedropper.cur -------------------------------------------------------------------------------- /htdocs/images/cursors/hand.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/cursors/hand.cur -------------------------------------------------------------------------------- /htdocs/images/cursors/hand_closed.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/cursors/hand_closed.cur -------------------------------------------------------------------------------- /htdocs/images/cursors/hand_opened.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/cursors/hand_opened.cur -------------------------------------------------------------------------------- /htdocs/images/cursors/paintbucket.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/cursors/paintbucket.cur -------------------------------------------------------------------------------- /htdocs/images/cursors/pencil.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/cursors/pencil.cur -------------------------------------------------------------------------------- /htdocs/images/cursors/zoomdisabled.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/cursors/zoomdisabled.cur -------------------------------------------------------------------------------- /htdocs/images/cursors/zoomin.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/cursors/zoomin.cur -------------------------------------------------------------------------------- /htdocs/images/cursors/zoomout.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/cursors/zoomout.cur -------------------------------------------------------------------------------- /htdocs/images/dialog1/bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/dialog1/bottom.gif -------------------------------------------------------------------------------- /htdocs/images/dialog1/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/dialog1/bottom.png -------------------------------------------------------------------------------- /htdocs/images/dialog1/bottom_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/dialog1/bottom_left.gif -------------------------------------------------------------------------------- /htdocs/images/dialog1/bottom_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/dialog1/bottom_left.png -------------------------------------------------------------------------------- /htdocs/images/dialog1/bottom_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/dialog1/bottom_right.gif -------------------------------------------------------------------------------- /htdocs/images/dialog1/bottom_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/dialog1/bottom_right.png -------------------------------------------------------------------------------- /htdocs/images/dialog1/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/dialog1/left.gif -------------------------------------------------------------------------------- /htdocs/images/dialog1/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/dialog1/left.png -------------------------------------------------------------------------------- /htdocs/images/dialog1/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/dialog1/right.gif -------------------------------------------------------------------------------- /htdocs/images/dialog1/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/dialog1/right.png -------------------------------------------------------------------------------- /htdocs/images/dialog1/top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/dialog1/top.gif -------------------------------------------------------------------------------- /htdocs/images/dialog1/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/dialog1/top.png -------------------------------------------------------------------------------- /htdocs/images/dialog1/top_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/dialog1/top_left.gif -------------------------------------------------------------------------------- /htdocs/images/dialog1/top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/dialog1/top_left.png -------------------------------------------------------------------------------- /htdocs/images/dialog1/top_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/dialog1/top_right.gif -------------------------------------------------------------------------------- /htdocs/images/dialog1/top_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/dialog1/top_right.png -------------------------------------------------------------------------------- /htdocs/images/dialog_border/CVS/Entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/dialog_border/CVS/Entries -------------------------------------------------------------------------------- /htdocs/images/dialog_border/CVS/Repository: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/dialog_border/CVS/Repository -------------------------------------------------------------------------------- /htdocs/images/dialog_border/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:jhuckaby@cvs.eng.admission.net:/CVSROOT 2 | -------------------------------------------------------------------------------- /htdocs/images/dialog_border/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/dialog_border/bottom.png -------------------------------------------------------------------------------- /htdocs/images/dialog_border/bottom_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/dialog_border/bottom_left.png -------------------------------------------------------------------------------- /htdocs/images/dialog_border/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/dialog_border/left.png -------------------------------------------------------------------------------- /htdocs/images/dialog_border/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/dialog_border/right.png -------------------------------------------------------------------------------- /htdocs/images/dialog_border/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/dialog_border/top.png -------------------------------------------------------------------------------- /htdocs/images/dialog_border/top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/dialog_border/top_left.png -------------------------------------------------------------------------------- /htdocs/images/dialog_border/top_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/dialog_border/top_right.png -------------------------------------------------------------------------------- /htdocs/images/divider.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/divider.gif -------------------------------------------------------------------------------- /htdocs/images/docs/assetmgr/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/docs/assetmgr/move.png -------------------------------------------------------------------------------- /htdocs/images/docs/assetmgr/rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/docs/assetmgr/rename.png -------------------------------------------------------------------------------- /htdocs/images/docs/assetmgr/transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/docs/assetmgr/transfer.png -------------------------------------------------------------------------------- /htdocs/images/docs/fonts/bitmap_fonts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/docs/fonts/bitmap_fonts.png -------------------------------------------------------------------------------- /htdocs/images/docs/fonts/create_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/docs/fonts/create_font.png -------------------------------------------------------------------------------- /htdocs/images/docs/getting_started/glog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/docs/getting_started/glog.png -------------------------------------------------------------------------------- /htdocs/images/docs/keymouse/edit_keydef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/docs/keymouse/edit_keydef.png -------------------------------------------------------------------------------- /htdocs/images/docs/level_editor/map_nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/docs/level_editor/map_nav.png -------------------------------------------------------------------------------- /htdocs/images/docs/localdev/toolbar_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/docs/localdev/toolbar_bug.png -------------------------------------------------------------------------------- /htdocs/images/docs/publish/export_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/docs/publish/export_link.png -------------------------------------------------------------------------------- /htdocs/images/docs/publish/rel_notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/docs/publish/rel_notes.png -------------------------------------------------------------------------------- /htdocs/images/docs/publish/rev_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/docs/publish/rev_editor.png -------------------------------------------------------------------------------- /htdocs/images/docs/publish/rev_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/docs/publish/rev_options.png -------------------------------------------------------------------------------- /htdocs/images/docs/publish/upload_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/docs/publish/upload_code.png -------------------------------------------------------------------------------- /htdocs/images/doxter/example1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/doxter/example1.gif -------------------------------------------------------------------------------- /htdocs/images/doxter/file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/doxter/file.gif -------------------------------------------------------------------------------- /htdocs/images/doxter/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/doxter/folder.gif -------------------------------------------------------------------------------- /htdocs/images/doxter/folder_open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/doxter/folder_open.gif -------------------------------------------------------------------------------- /htdocs/images/doxter/icon_external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/doxter/icon_external.png -------------------------------------------------------------------------------- /htdocs/images/doxter/icon_mailto.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/doxter/icon_mailto.gif -------------------------------------------------------------------------------- /htdocs/images/doxter/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/doxter/screenshot1.png -------------------------------------------------------------------------------- /htdocs/images/engine/dialog/bottom-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/engine/dialog/bottom-dark.png -------------------------------------------------------------------------------- /htdocs/images/engine/dialog/bottom-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/engine/dialog/bottom-left.png -------------------------------------------------------------------------------- /htdocs/images/engine/dialog/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/engine/dialog/bottom.png -------------------------------------------------------------------------------- /htdocs/images/engine/dialog/center-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/engine/dialog/center-dark.png -------------------------------------------------------------------------------- /htdocs/images/engine/dialog/center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/engine/dialog/center.png -------------------------------------------------------------------------------- /htdocs/images/engine/dialog/dot-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/engine/dialog/dot-black.png -------------------------------------------------------------------------------- /htdocs/images/engine/dialog/dot-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/engine/dialog/dot-white.png -------------------------------------------------------------------------------- /htdocs/images/engine/dialog/left-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/engine/dialog/left-dark.png -------------------------------------------------------------------------------- /htdocs/images/engine/dialog/left-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/engine/dialog/left-light.png -------------------------------------------------------------------------------- /htdocs/images/engine/dialog/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/engine/dialog/left.png -------------------------------------------------------------------------------- /htdocs/images/engine/dialog/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/engine/dialog/play.png -------------------------------------------------------------------------------- /htdocs/images/engine/dialog/right-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/engine/dialog/right-dark.png -------------------------------------------------------------------------------- /htdocs/images/engine/dialog/right-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/engine/dialog/right-light.png -------------------------------------------------------------------------------- /htdocs/images/engine/dialog/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/engine/dialog/right.png -------------------------------------------------------------------------------- /htdocs/images/engine/dialog/titles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/engine/dialog/titles.png -------------------------------------------------------------------------------- /htdocs/images/engine/dialog/top-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/engine/dialog/top-dark.png -------------------------------------------------------------------------------- /htdocs/images/engine/dialog/top-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/engine/dialog/top-left.png -------------------------------------------------------------------------------- /htdocs/images/engine/dialog/top-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/engine/dialog/top-light.png -------------------------------------------------------------------------------- /htdocs/images/engine/dialog/top-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/engine/dialog/top-right.png -------------------------------------------------------------------------------- /htdocs/images/engine/dialog/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/engine/dialog/top.png -------------------------------------------------------------------------------- /htdocs/images/engine/toolbar/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/engine/toolbar/background.png -------------------------------------------------------------------------------- /htdocs/images/engine/toolbar/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/engine/toolbar/divider.png -------------------------------------------------------------------------------- /htdocs/images/engine/toolbar/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/engine/toolbar/icons.png -------------------------------------------------------------------------------- /htdocs/images/engine/toolbar/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/engine/toolbar/logo.png -------------------------------------------------------------------------------- /htdocs/images/engine/toolbar/msgs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/engine/toolbar/msgs.png -------------------------------------------------------------------------------- /htdocs/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/favicon.ico -------------------------------------------------------------------------------- /htdocs/images/icons/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/accept.png -------------------------------------------------------------------------------- /htdocs/images/icons/action.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/action.gif -------------------------------------------------------------------------------- /htdocs/images/icons/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/add.gif -------------------------------------------------------------------------------- /htdocs/images/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/add.png -------------------------------------------------------------------------------- /htdocs/images/icons/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/anchor.png -------------------------------------------------------------------------------- /htdocs/images/icons/application_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/application_form.png -------------------------------------------------------------------------------- /htdocs/images/icons/arrow-asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/arrow-asc.gif -------------------------------------------------------------------------------- /htdocs/images/icons/arrow-desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/arrow-desc.gif -------------------------------------------------------------------------------- /htdocs/images/icons/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/arrow-down.png -------------------------------------------------------------------------------- /htdocs/images/icons/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/arrow-right.png -------------------------------------------------------------------------------- /htdocs/images/icons/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/arrow_down.png -------------------------------------------------------------------------------- /htdocs/images/icons/arrow_redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/arrow_redo.png -------------------------------------------------------------------------------- /htdocs/images/icons/arrow_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/arrow_refresh.png -------------------------------------------------------------------------------- /htdocs/images/icons/arrow_turn_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/arrow_turn_left.png -------------------------------------------------------------------------------- /htdocs/images/icons/arrow_turn_right_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/arrow_turn_right_2.png -------------------------------------------------------------------------------- /htdocs/images/icons/arrow_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/arrow_undo.png -------------------------------------------------------------------------------- /htdocs/images/icons/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/arrow_up.png -------------------------------------------------------------------------------- /htdocs/images/icons/attachment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/attachment.gif -------------------------------------------------------------------------------- /htdocs/images/icons/bot_add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/bot_add.gif -------------------------------------------------------------------------------- /htdocs/images/icons/brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/brick.png -------------------------------------------------------------------------------- /htdocs/images/icons/brick_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/brick_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/brick_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/brick_delete.png -------------------------------------------------------------------------------- /htdocs/images/icons/brick_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/brick_edit.png -------------------------------------------------------------------------------- /htdocs/images/icons/brick_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/brick_error.png -------------------------------------------------------------------------------- /htdocs/images/icons/brick_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/brick_go.png -------------------------------------------------------------------------------- /htdocs/images/icons/brick_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/brick_link.png -------------------------------------------------------------------------------- /htdocs/images/icons/bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/bricks.png -------------------------------------------------------------------------------- /htdocs/images/icons/bricks_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/bricks_bw.png -------------------------------------------------------------------------------- /htdocs/images/icons/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/bug.png -------------------------------------------------------------------------------- /htdocs/images/icons/bug_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/bug_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/bug_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/bug_delete.png -------------------------------------------------------------------------------- /htdocs/images/icons/bug_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/bug_edit.png -------------------------------------------------------------------------------- /htdocs/images/icons/bug_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/bug_error.png -------------------------------------------------------------------------------- /htdocs/images/icons/bug_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/bug_go.png -------------------------------------------------------------------------------- /htdocs/images/icons/bug_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/bug_link.png -------------------------------------------------------------------------------- /htdocs/images/icons/bullet_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/bullet_upload.png -------------------------------------------------------------------------------- /htdocs/images/icons/busy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/busy.gif -------------------------------------------------------------------------------- /htdocs/images/icons/calc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/calc.gif -------------------------------------------------------------------------------- /htdocs/images/icons/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/calendar.gif -------------------------------------------------------------------------------- /htdocs/images/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/cancel.png -------------------------------------------------------------------------------- /htdocs/images/icons/cd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/cd.gif -------------------------------------------------------------------------------- /htdocs/images/icons/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/cd.png -------------------------------------------------------------------------------- /htdocs/images/icons/cd_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/cd_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/cd_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/cd_delete.png -------------------------------------------------------------------------------- /htdocs/images/icons/cd_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/cd_edit.png -------------------------------------------------------------------------------- /htdocs/images/icons/cd_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/cd_go.png -------------------------------------------------------------------------------- /htdocs/images/icons/chart_pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/chart_pie.png -------------------------------------------------------------------------------- /htdocs/images/icons/check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/check.gif -------------------------------------------------------------------------------- /htdocs/images/icons/check_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/check_24.png -------------------------------------------------------------------------------- /htdocs/images/icons/clipboard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/clipboard.gif -------------------------------------------------------------------------------- /htdocs/images/icons/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/cog.png -------------------------------------------------------------------------------- /htdocs/images/icons/cog_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/cog_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/cog_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/cog_delete.png -------------------------------------------------------------------------------- /htdocs/images/icons/cog_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/cog_edit.png -------------------------------------------------------------------------------- /htdocs/images/icons/cog_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/cog_error.png -------------------------------------------------------------------------------- /htdocs/images/icons/cog_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/cog_go.png -------------------------------------------------------------------------------- /htdocs/images/icons/cogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/cogs.png -------------------------------------------------------------------------------- /htdocs/images/icons/coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/coins.png -------------------------------------------------------------------------------- /htdocs/images/icons/coins_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/coins_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/color_swatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/color_swatch.png -------------------------------------------------------------------------------- /htdocs/images/icons/color_swatch_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/color_swatch_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/color_swatch_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/color_swatch_edit.png -------------------------------------------------------------------------------- /htdocs/images/icons/color_wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/color_wheel.png -------------------------------------------------------------------------------- /htdocs/images/icons/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/comment.png -------------------------------------------------------------------------------- /htdocs/images/icons/comment_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/comment_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/comment_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/comment_delete.png -------------------------------------------------------------------------------- /htdocs/images/icons/comment_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/comment_edit.png -------------------------------------------------------------------------------- /htdocs/images/icons/component.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/component.gif -------------------------------------------------------------------------------- /htdocs/images/icons/compress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/compress.png -------------------------------------------------------------------------------- /htdocs/images/icons/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/computer.png -------------------------------------------------------------------------------- /htdocs/images/icons/computer_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/computer_go.png -------------------------------------------------------------------------------- /htdocs/images/icons/contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/contrast.png -------------------------------------------------------------------------------- /htdocs/images/icons/contrast_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/contrast_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/control_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/control_pause.png -------------------------------------------------------------------------------- /htdocs/images/icons/control_pause_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/control_pause_gray.png -------------------------------------------------------------------------------- /htdocs/images/icons/control_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/control_play.png -------------------------------------------------------------------------------- /htdocs/images/icons/control_play_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/control_play_gray.png -------------------------------------------------------------------------------- /htdocs/images/icons/control_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/control_stop.png -------------------------------------------------------------------------------- /htdocs/images/icons/controller.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/controller.gif -------------------------------------------------------------------------------- /htdocs/images/icons/controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/controller.png -------------------------------------------------------------------------------- /htdocs/images/icons/controller_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/controller_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/controller_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/controller_delete.png -------------------------------------------------------------------------------- /htdocs/images/icons/controller_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/controller_error.png -------------------------------------------------------------------------------- /htdocs/images/icons/controller_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/controller_gray.png -------------------------------------------------------------------------------- /htdocs/images/icons/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/cursor.png -------------------------------------------------------------------------------- /htdocs/images/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/delete.png -------------------------------------------------------------------------------- /htdocs/images/icons/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/disk.png -------------------------------------------------------------------------------- /htdocs/images/icons/doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/doc.gif -------------------------------------------------------------------------------- /htdocs/images/icons/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/edit.gif -------------------------------------------------------------------------------- /htdocs/images/icons/email_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/email_edit.png -------------------------------------------------------------------------------- /htdocs/images/icons/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/eraser.png -------------------------------------------------------------------------------- /htdocs/images/icons/error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/error.gif -------------------------------------------------------------------------------- /htdocs/images/icons/error_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/error_24.png -------------------------------------------------------------------------------- /htdocs/images/icons/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/eye.png -------------------------------------------------------------------------------- /htdocs/images/icons/eye_closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/eye_closed.gif -------------------------------------------------------------------------------- /htdocs/images/icons/eye_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/eye_closed.png -------------------------------------------------------------------------------- /htdocs/images/icons/eye_open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/eye_open.gif -------------------------------------------------------------------------------- /htdocs/images/icons/eye_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/eye_open.png -------------------------------------------------------------------------------- /htdocs/images/icons/eyedropper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/eyedropper.png -------------------------------------------------------------------------------- /htdocs/images/icons/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/facebook.png -------------------------------------------------------------------------------- /htdocs/images/icons/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/feed.png -------------------------------------------------------------------------------- /htdocs/images/icons/file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/file.gif -------------------------------------------------------------------------------- /htdocs/images/icons/flag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/flag.gif -------------------------------------------------------------------------------- /htdocs/images/icons/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/folder.gif -------------------------------------------------------------------------------- /htdocs/images/icons/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/folder.png -------------------------------------------------------------------------------- /htdocs/images/icons/folder_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/folder_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/folder_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/folder_go.png -------------------------------------------------------------------------------- /htdocs/images/icons/folder_magnify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/folder_magnify.png -------------------------------------------------------------------------------- /htdocs/images/icons/folder_open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/folder_open.gif -------------------------------------------------------------------------------- /htdocs/images/icons/folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/folder_open.png -------------------------------------------------------------------------------- /htdocs/images/icons/folder_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/folder_page.png -------------------------------------------------------------------------------- /htdocs/images/icons/folder_page_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/folder_page_white.png -------------------------------------------------------------------------------- /htdocs/images/icons/folder_wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/folder_wrench.png -------------------------------------------------------------------------------- /htdocs/images/icons/font.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/font.gif -------------------------------------------------------------------------------- /htdocs/images/icons/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/group.png -------------------------------------------------------------------------------- /htdocs/images/icons/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/hand.png -------------------------------------------------------------------------------- /htdocs/images/icons/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/help.gif -------------------------------------------------------------------------------- /htdocs/images/icons/home.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/home.gif -------------------------------------------------------------------------------- /htdocs/images/icons/house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/house.png -------------------------------------------------------------------------------- /htdocs/images/icons/image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/image.gif -------------------------------------------------------------------------------- /htdocs/images/icons/image_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/image_edit.png -------------------------------------------------------------------------------- /htdocs/images/icons/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/information.png -------------------------------------------------------------------------------- /htdocs/images/icons/key.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/key.gif -------------------------------------------------------------------------------- /htdocs/images/icons/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/keyboard.png -------------------------------------------------------------------------------- /htdocs/images/icons/keyboard_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/keyboard_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/keyboard_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/keyboard_delete.png -------------------------------------------------------------------------------- /htdocs/images/icons/keyboard_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/keyboard_edit.png -------------------------------------------------------------------------------- /htdocs/images/icons/keyboard_magnify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/keyboard_magnify.png -------------------------------------------------------------------------------- /htdocs/images/icons/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/layers.png -------------------------------------------------------------------------------- /htdocs/images/icons/layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/layout.png -------------------------------------------------------------------------------- /htdocs/images/icons/layout_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/layout_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/layout_content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/layout_content.png -------------------------------------------------------------------------------- /htdocs/images/icons/layout_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/layout_delete.png -------------------------------------------------------------------------------- /htdocs/images/icons/layout_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/layout_edit.png -------------------------------------------------------------------------------- /htdocs/images/icons/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/lightbulb.png -------------------------------------------------------------------------------- /htdocs/images/icons/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/lock.gif -------------------------------------------------------------------------------- /htdocs/images/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/lock.png -------------------------------------------------------------------------------- /htdocs/images/icons/lock2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/lock2.gif -------------------------------------------------------------------------------- /htdocs/images/icons/lock_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/lock_edit.png -------------------------------------------------------------------------------- /htdocs/images/icons/mail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/mail.gif -------------------------------------------------------------------------------- /htdocs/images/icons/menu_contract.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/menu_contract.gif -------------------------------------------------------------------------------- /htdocs/images/icons/menu_expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/menu_expand.gif -------------------------------------------------------------------------------- /htdocs/images/icons/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/minus.gif -------------------------------------------------------------------------------- /htdocs/images/icons/mobile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/mobile.gif -------------------------------------------------------------------------------- /htdocs/images/icons/money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/money.png -------------------------------------------------------------------------------- /htdocs/images/icons/money_dollar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/money_dollar.png -------------------------------------------------------------------------------- /htdocs/images/icons/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/monitor.png -------------------------------------------------------------------------------- /htdocs/images/icons/mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/mp3.gif -------------------------------------------------------------------------------- /htdocs/images/icons/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/music.png -------------------------------------------------------------------------------- /htdocs/images/icons/music_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/music_gray.png -------------------------------------------------------------------------------- /htdocs/images/icons/music_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/music_off.png -------------------------------------------------------------------------------- /htdocs/images/icons/music_off_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/music_off_gray.png -------------------------------------------------------------------------------- /htdocs/images/icons/next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/next.gif -------------------------------------------------------------------------------- /htdocs/images/icons/next_disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/next_disabled.gif -------------------------------------------------------------------------------- /htdocs/images/icons/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/note.png -------------------------------------------------------------------------------- /htdocs/images/icons/openid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/openid.gif -------------------------------------------------------------------------------- /htdocs/images/icons/openid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/openid.png -------------------------------------------------------------------------------- /htdocs/images/icons/package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/package.png -------------------------------------------------------------------------------- /htdocs/images/icons/package_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/package_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/package_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/package_delete.png -------------------------------------------------------------------------------- /htdocs/images/icons/package_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/package_edit.png -------------------------------------------------------------------------------- /htdocs/images/icons/package_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/package_go.png -------------------------------------------------------------------------------- /htdocs/images/icons/package_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/package_green.png -------------------------------------------------------------------------------- /htdocs/images/icons/package_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/package_link.png -------------------------------------------------------------------------------- /htdocs/images/icons/page_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/page_white.png -------------------------------------------------------------------------------- /htdocs/images/icons/page_white_acrobat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/page_white_acrobat.png -------------------------------------------------------------------------------- /htdocs/images/icons/page_white_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/page_white_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/page_white_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/page_white_audio.png -------------------------------------------------------------------------------- /htdocs/images/icons/page_white_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/page_white_cd.png -------------------------------------------------------------------------------- /htdocs/images/icons/page_white_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/page_white_code.png -------------------------------------------------------------------------------- /htdocs/images/icons/page_white_code_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/page_white_code_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/page_white_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/page_white_copy.png -------------------------------------------------------------------------------- /htdocs/images/icons/page_white_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/page_white_edit.png -------------------------------------------------------------------------------- /htdocs/images/icons/page_white_excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/page_white_excel.png -------------------------------------------------------------------------------- /htdocs/images/icons/page_white_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/page_white_flash.png -------------------------------------------------------------------------------- /htdocs/images/icons/page_white_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/page_white_font.png -------------------------------------------------------------------------------- /htdocs/images/icons/page_white_get.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/page_white_get.png -------------------------------------------------------------------------------- /htdocs/images/icons/page_white_magnify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/page_white_magnify.png -------------------------------------------------------------------------------- /htdocs/images/icons/page_white_movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/page_white_movie.png -------------------------------------------------------------------------------- /htdocs/images/icons/page_white_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/page_white_paste.png -------------------------------------------------------------------------------- /htdocs/images/icons/page_white_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/page_white_picture.png -------------------------------------------------------------------------------- /htdocs/images/icons/page_white_put.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/page_white_put.png -------------------------------------------------------------------------------- /htdocs/images/icons/page_white_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/page_white_text.png -------------------------------------------------------------------------------- /htdocs/images/icons/page_white_text_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/page_white_text_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/page_white_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/page_white_upload.png -------------------------------------------------------------------------------- /htdocs/images/icons/page_white_vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/page_white_vector.png -------------------------------------------------------------------------------- /htdocs/images/icons/page_white_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/page_white_word.png -------------------------------------------------------------------------------- /htdocs/images/icons/page_white_wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/page_white_wrench.png -------------------------------------------------------------------------------- /htdocs/images/icons/page_white_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/page_white_zip.png -------------------------------------------------------------------------------- /htdocs/images/icons/paintbrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/paintbrush.png -------------------------------------------------------------------------------- /htdocs/images/icons/paintcan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/paintcan.png -------------------------------------------------------------------------------- /htdocs/images/icons/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/palette.png -------------------------------------------------------------------------------- /htdocs/images/icons/palette_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/palette_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/palette_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/palette_edit.png -------------------------------------------------------------------------------- /htdocs/images/icons/pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/pdf.gif -------------------------------------------------------------------------------- /htdocs/images/icons/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/pencil.png -------------------------------------------------------------------------------- /htdocs/images/icons/photo_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/photo_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/picture_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/picture_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/plugin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/plugin.gif -------------------------------------------------------------------------------- /htdocs/images/icons/plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/plugin.png -------------------------------------------------------------------------------- /htdocs/images/icons/plugin_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/plugin_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/plugin_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/plugin_delete.png -------------------------------------------------------------------------------- /htdocs/images/icons/plugin_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/plugin_disabled.png -------------------------------------------------------------------------------- /htdocs/images/icons/plugin_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/plugin_edit.png -------------------------------------------------------------------------------- /htdocs/images/icons/plugin_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/plugin_error.png -------------------------------------------------------------------------------- /htdocs/images/icons/plugin_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/plugin_go.png -------------------------------------------------------------------------------- /htdocs/images/icons/plugin_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/plugin_link.png -------------------------------------------------------------------------------- /htdocs/images/icons/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/plus.gif -------------------------------------------------------------------------------- /htdocs/images/icons/preset.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/preset.gif -------------------------------------------------------------------------------- /htdocs/images/icons/prev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/prev.gif -------------------------------------------------------------------------------- /htdocs/images/icons/prev_disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/prev_disabled.gif -------------------------------------------------------------------------------- /htdocs/images/icons/print.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/print.gif -------------------------------------------------------------------------------- /htdocs/images/icons/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/printer.png -------------------------------------------------------------------------------- /htdocs/images/icons/project.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/project.gif -------------------------------------------------------------------------------- /htdocs/images/icons/prop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/prop.gif -------------------------------------------------------------------------------- /htdocs/images/icons/refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/refresh.gif -------------------------------------------------------------------------------- /htdocs/images/icons/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/refresh.png -------------------------------------------------------------------------------- /htdocs/images/icons/resultset_first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/resultset_first.png -------------------------------------------------------------------------------- /htdocs/images/icons/resultset_last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/resultset_last.png -------------------------------------------------------------------------------- /htdocs/images/icons/resultset_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/resultset_next.png -------------------------------------------------------------------------------- /htdocs/images/icons/resultset_previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/resultset_previous.png -------------------------------------------------------------------------------- /htdocs/images/icons/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/save.gif -------------------------------------------------------------------------------- /htdocs/images/icons/script.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/script.gif -------------------------------------------------------------------------------- /htdocs/images/icons/script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/script.png -------------------------------------------------------------------------------- /htdocs/images/icons/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/search.png -------------------------------------------------------------------------------- /htdocs/images/icons/server.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/server.gif -------------------------------------------------------------------------------- /htdocs/images/icons/server_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/server_down.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/1st.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/1st.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/2nd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/2nd.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/3rd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/3rd.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/BrandSpankingNew.net.webloc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/images/icons/small/arrow_dash_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/arrow_dash_up.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/arrow_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/arrow_down.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/arrow_expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/arrow_expand.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/arrow_fat_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/arrow_fat_up.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/arrow_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/arrow_left.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/arrow_mini_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/arrow_mini_up.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/arrow_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/arrow_right.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/arrow_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/arrow_up.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/basket.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/basket.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/bell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/bell.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/block.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/block.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/bookmark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/bookmark.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/bug.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/bug.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/button.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/calendar.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/calendar_day.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/calendar_day.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/checkbox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/checkbox.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/clipboard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/clipboard.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/clock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/clock.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/comment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/comment.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/comment_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/comment_left.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/copy.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/cross.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/cross.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/cube.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/cube.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/cut.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/cut.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/database.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/database.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/document.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/document.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/drop_box.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/drop_box.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/field_hidden.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/field_hidden.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/field_input.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/field_input.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/field_text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/field_text.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/flag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/flag.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/folder.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/font_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/font_down.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/font_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/font_up.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/globe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/globe.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/graph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/graph.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/happy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/happy.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/heading1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/heading1.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/heading2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/heading2.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/heading3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/heading3.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/heading4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/heading4.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/heading5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/heading5.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/heading6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/heading6.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/heart.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/heart_broken.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/heart_broken.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/home.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/home.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/ident_in.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/ident_in.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/image.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/indent_out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/indent_out.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/index_card.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/index_card.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/key.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/key.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/list_ordered.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/list_ordered.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/lock.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/magnify.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/magnify.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/magnify_minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/magnify_minus.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/magnify_plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/magnify_plus.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/mail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/mail.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/mail_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/mail_back.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/mail_open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/mail_open.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/merge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/merge.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/minus.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/mobile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/mobile.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/paste.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/paste.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/pencil.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/pencil.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/person.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/person.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/plugin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/plugin.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/plus.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/printer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/printer.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/pulldown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/pulldown.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/quote.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/quote.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/radio.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/radio.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/sad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/sad.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/save.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/script.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/script.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/shield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/shield.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/sound.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/sound.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/sound_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/sound_on.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/split.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/split.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/star.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/star.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/table.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/table.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/tag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/tag.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/tick.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/tick.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/transmission.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/transmission.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/trash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/trash.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/turn_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/turn_left.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/turn_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/turn_right.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/wand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/wand.gif -------------------------------------------------------------------------------- /htdocs/images/icons/small/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/small/warning.gif -------------------------------------------------------------------------------- /htdocs/images/icons/sound.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/sound.gif -------------------------------------------------------------------------------- /htdocs/images/icons/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/sound.png -------------------------------------------------------------------------------- /htdocs/images/icons/sound_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/sound_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/sound_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/sound_delete.png -------------------------------------------------------------------------------- /htdocs/images/icons/sound_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/sound_gray.png -------------------------------------------------------------------------------- /htdocs/images/icons/sound_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/sound_low.png -------------------------------------------------------------------------------- /htdocs/images/icons/sound_mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/sound_mute.png -------------------------------------------------------------------------------- /htdocs/images/icons/sound_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/sound_none.png -------------------------------------------------------------------------------- /htdocs/images/icons/sound_off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/sound_off.gif -------------------------------------------------------------------------------- /htdocs/images/icons/sound_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/sound_off.png -------------------------------------------------------------------------------- /htdocs/images/icons/sound_off_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/sound_off_gray.png -------------------------------------------------------------------------------- /htdocs/images/icons/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/star.png -------------------------------------------------------------------------------- /htdocs/images/icons/star_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/star_gray.png -------------------------------------------------------------------------------- /htdocs/images/icons/stop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/stop.gif -------------------------------------------------------------------------------- /htdocs/images/icons/style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/style.png -------------------------------------------------------------------------------- /htdocs/images/icons/style_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/style_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/style_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/style_delete.png -------------------------------------------------------------------------------- /htdocs/images/icons/style_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/style_edit.png -------------------------------------------------------------------------------- /htdocs/images/icons/style_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/style_go.png -------------------------------------------------------------------------------- /htdocs/images/icons/subtract.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/subtract.gif -------------------------------------------------------------------------------- /htdocs/images/icons/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/table.png -------------------------------------------------------------------------------- /htdocs/images/icons/table_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/table_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/tag.png -------------------------------------------------------------------------------- /htdocs/images/icons/tag_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/tag_blue.png -------------------------------------------------------------------------------- /htdocs/images/icons/tag_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/tag_gray.png -------------------------------------------------------------------------------- /htdocs/images/icons/talk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/talk.gif -------------------------------------------------------------------------------- /htdocs/images/icons/telephone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/telephone.png -------------------------------------------------------------------------------- /htdocs/images/icons/telephone_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/telephone_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/telephone_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/telephone_delete.png -------------------------------------------------------------------------------- /htdocs/images/icons/telephone_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/telephone_edit.png -------------------------------------------------------------------------------- /htdocs/images/icons/telephone_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/telephone_error.png -------------------------------------------------------------------------------- /htdocs/images/icons/telephone_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/telephone_go.png -------------------------------------------------------------------------------- /htdocs/images/icons/telephone_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/telephone_key.png -------------------------------------------------------------------------------- /htdocs/images/icons/telephone_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/telephone_link.png -------------------------------------------------------------------------------- /htdocs/images/icons/text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/text.gif -------------------------------------------------------------------------------- /htdocs/images/icons/text_bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/text_bold.png -------------------------------------------------------------------------------- /htdocs/images/icons/text_heading_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/text_heading_1.png -------------------------------------------------------------------------------- /htdocs/images/icons/text_heading_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/text_heading_2.png -------------------------------------------------------------------------------- /htdocs/images/icons/text_heading_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/text_heading_3.png -------------------------------------------------------------------------------- /htdocs/images/icons/text_heading_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/text_heading_4.png -------------------------------------------------------------------------------- /htdocs/images/icons/text_heading_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/text_heading_5.png -------------------------------------------------------------------------------- /htdocs/images/icons/text_indent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/text_indent.png -------------------------------------------------------------------------------- /htdocs/images/icons/text_indent_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/text_indent_remove.png -------------------------------------------------------------------------------- /htdocs/images/icons/text_italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/text_italic.png -------------------------------------------------------------------------------- /htdocs/images/icons/text_list_bullets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/text_list_bullets.png -------------------------------------------------------------------------------- /htdocs/images/icons/text_list_numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/text_list_numbers.png -------------------------------------------------------------------------------- /htdocs/images/icons/thread.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/thread.gif -------------------------------------------------------------------------------- /htdocs/images/icons/thread_folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/thread_folder.gif -------------------------------------------------------------------------------- /htdocs/images/icons/thread_folder_open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/thread_folder_open.gif -------------------------------------------------------------------------------- /htdocs/images/icons/timer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/timer.gif -------------------------------------------------------------------------------- /htdocs/images/icons/trash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/trash.gif -------------------------------------------------------------------------------- /htdocs/images/icons/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/twitter.png -------------------------------------------------------------------------------- /htdocs/images/icons/typing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/typing.gif -------------------------------------------------------------------------------- /htdocs/images/icons/unlock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/unlock.gif -------------------------------------------------------------------------------- /htdocs/images/icons/unlock2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/unlock2.gif -------------------------------------------------------------------------------- /htdocs/images/icons/user.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/user.gif -------------------------------------------------------------------------------- /htdocs/images/icons/user_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/user_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/user_add2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/user_add2.png -------------------------------------------------------------------------------- /htdocs/images/icons/user_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/user_edit.png -------------------------------------------------------------------------------- /htdocs/images/icons/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/weather.png -------------------------------------------------------------------------------- /htdocs/images/icons/weather_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/weather_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/weather_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/weather_edit.png -------------------------------------------------------------------------------- /htdocs/images/icons/webcam.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/webcam.gif -------------------------------------------------------------------------------- /htdocs/images/icons/webcam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/webcam.png -------------------------------------------------------------------------------- /htdocs/images/icons/world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/world.png -------------------------------------------------------------------------------- /htdocs/images/icons/world_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/world_add.png -------------------------------------------------------------------------------- /htdocs/images/icons/world_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/world_edit.png -------------------------------------------------------------------------------- /htdocs/images/icons/world_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/world_link.png -------------------------------------------------------------------------------- /htdocs/images/icons/wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/wrench.png -------------------------------------------------------------------------------- /htdocs/images/icons/x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/x.gif -------------------------------------------------------------------------------- /htdocs/images/icons/xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/xls.gif -------------------------------------------------------------------------------- /htdocs/images/icons/zip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/zip.gif -------------------------------------------------------------------------------- /htdocs/images/icons/zoom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/zoom.gif -------------------------------------------------------------------------------- /htdocs/images/icons/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/zoom.png -------------------------------------------------------------------------------- /htdocs/images/icons/zoom_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/icons/zoom_gray.png -------------------------------------------------------------------------------- /htdocs/images/info_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/info_32.png -------------------------------------------------------------------------------- /htdocs/images/info_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/info_48.png -------------------------------------------------------------------------------- /htdocs/images/info_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/info_64.png -------------------------------------------------------------------------------- /htdocs/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/loading.gif -------------------------------------------------------------------------------- /htdocs/images/logo_40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/logo_40.gif -------------------------------------------------------------------------------- /htdocs/images/logo_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/logo_40.png -------------------------------------------------------------------------------- /htdocs/images/logo_60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/logo_60.gif -------------------------------------------------------------------------------- /htdocs/images/logo_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/logo_60.png -------------------------------------------------------------------------------- /htdocs/images/logo_80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/logo_80.gif -------------------------------------------------------------------------------- /htdocs/images/logo_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/logo_80.png -------------------------------------------------------------------------------- /htdocs/images/logo_80_60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/logo_80_60.gif -------------------------------------------------------------------------------- /htdocs/images/logo_80_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/logo_80_60.png -------------------------------------------------------------------------------- /htdocs/images/logo_80_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/logo_80_80.png -------------------------------------------------------------------------------- /htdocs/images/logo_inverse_glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/logo_inverse_glow.png -------------------------------------------------------------------------------- /htdocs/images/logo_inverse_glow_75pct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/logo_inverse_glow_75pct.png -------------------------------------------------------------------------------- /htdocs/images/logo_inverse_glow_half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/logo_inverse_glow_half.png -------------------------------------------------------------------------------- /htdocs/images/nav/bkgnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/nav/bkgnd.png -------------------------------------------------------------------------------- /htdocs/images/nav/bkgnd2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/nav/bkgnd2.gif -------------------------------------------------------------------------------- /htdocs/images/nav/bkgnd2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/nav/bkgnd2.png -------------------------------------------------------------------------------- /htdocs/images/nav/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/nav/left.gif -------------------------------------------------------------------------------- /htdocs/images/nav/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/nav/left.png -------------------------------------------------------------------------------- /htdocs/images/nav/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/nav/right.gif -------------------------------------------------------------------------------- /htdocs/images/nav/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/nav/right.png -------------------------------------------------------------------------------- /htdocs/images/nav/separator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/nav/separator.gif -------------------------------------------------------------------------------- /htdocs/images/nav/separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/nav/separator.png -------------------------------------------------------------------------------- /htdocs/images/nav_br.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/nav_br.gif -------------------------------------------------------------------------------- /htdocs/images/no_preview_avail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/no_preview_avail.jpg -------------------------------------------------------------------------------- /htdocs/images/pixel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/pixel.gif -------------------------------------------------------------------------------- /htdocs/images/rev_box/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/rev_box/bottom.png -------------------------------------------------------------------------------- /htdocs/images/rev_box/bottom_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/rev_box/bottom_left.png -------------------------------------------------------------------------------- /htdocs/images/rev_box/bottom_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/rev_box/bottom_right.png -------------------------------------------------------------------------------- /htdocs/images/rev_box/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/rev_box/left.png -------------------------------------------------------------------------------- /htdocs/images/rev_box/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/rev_box/right.png -------------------------------------------------------------------------------- /htdocs/images/rev_box/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/rev_box/top.png -------------------------------------------------------------------------------- /htdocs/images/rev_box/top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/rev_box/top_left.png -------------------------------------------------------------------------------- /htdocs/images/rev_box/top_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/rev_box/top_right.png -------------------------------------------------------------------------------- /htdocs/images/rev_button/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/rev_button/left.png -------------------------------------------------------------------------------- /htdocs/images/rev_button/middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/rev_button/middle.png -------------------------------------------------------------------------------- /htdocs/images/rev_button/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/rev_button/right.png -------------------------------------------------------------------------------- /htdocs/images/rev_header/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/rev_header/bottom.png -------------------------------------------------------------------------------- /htdocs/images/rev_header/bottom_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/rev_header/bottom_left.png -------------------------------------------------------------------------------- /htdocs/images/rev_header/bottom_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/rev_header/bottom_right.png -------------------------------------------------------------------------------- /htdocs/images/rev_header/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/rev_header/left.png -------------------------------------------------------------------------------- /htdocs/images/rev_header/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/rev_header/right.png -------------------------------------------------------------------------------- /htdocs/images/rev_header/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/rev_header/top.png -------------------------------------------------------------------------------- /htdocs/images/rev_header/top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/rev_header/top_left.png -------------------------------------------------------------------------------- /htdocs/images/rev_header/top_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/rev_header/top_right.png -------------------------------------------------------------------------------- /htdocs/images/shadow_border/bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/shadow_border/bottom.gif -------------------------------------------------------------------------------- /htdocs/images/shadow_border/bottom_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/shadow_border/bottom_left.gif -------------------------------------------------------------------------------- /htdocs/images/shadow_border/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/shadow_border/left.gif -------------------------------------------------------------------------------- /htdocs/images/shadow_border/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/shadow_border/right.gif -------------------------------------------------------------------------------- /htdocs/images/shadow_border/top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/shadow_border/top.gif -------------------------------------------------------------------------------- /htdocs/images/shadow_border/top_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/shadow_border/top_left.gif -------------------------------------------------------------------------------- /htdocs/images/shadow_border/top_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/shadow_border/top_right.gif -------------------------------------------------------------------------------- /htdocs/images/sidebar/facebook_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/sidebar/facebook_24.png -------------------------------------------------------------------------------- /htdocs/images/sidebar/twitter_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/sidebar/twitter_24.png -------------------------------------------------------------------------------- /htdocs/images/sp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/sp.gif -------------------------------------------------------------------------------- /htdocs/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/spacer.gif -------------------------------------------------------------------------------- /htdocs/images/speech_bubbles/blue_bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/speech_bubbles/blue_bl.png -------------------------------------------------------------------------------- /htdocs/images/speech_bubbles/blue_bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/speech_bubbles/blue_bm.png -------------------------------------------------------------------------------- /htdocs/images/speech_bubbles/blue_br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/speech_bubbles/blue_br.png -------------------------------------------------------------------------------- /htdocs/images/speech_bubbles/blue_mi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/speech_bubbles/blue_mi.png -------------------------------------------------------------------------------- /htdocs/images/speech_bubbles/blue_ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/speech_bubbles/blue_ml.png -------------------------------------------------------------------------------- /htdocs/images/speech_bubbles/blue_mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/speech_bubbles/blue_mr.png -------------------------------------------------------------------------------- /htdocs/images/speech_bubbles/blue_tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/speech_bubbles/blue_tl.png -------------------------------------------------------------------------------- /htdocs/images/speech_bubbles/blue_tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/speech_bubbles/blue_tm.png -------------------------------------------------------------------------------- /htdocs/images/speech_bubbles/blue_tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/speech_bubbles/blue_tr.png -------------------------------------------------------------------------------- /htdocs/images/speech_bubbles/green_bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/speech_bubbles/green_bl.png -------------------------------------------------------------------------------- /htdocs/images/speech_bubbles/green_bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/speech_bubbles/green_bm.png -------------------------------------------------------------------------------- /htdocs/images/speech_bubbles/green_br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/speech_bubbles/green_br.png -------------------------------------------------------------------------------- /htdocs/images/speech_bubbles/green_mi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/speech_bubbles/green_mi.png -------------------------------------------------------------------------------- /htdocs/images/speech_bubbles/green_ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/speech_bubbles/green_ml.png -------------------------------------------------------------------------------- /htdocs/images/speech_bubbles/green_mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/speech_bubbles/green_mr.png -------------------------------------------------------------------------------- /htdocs/images/speech_bubbles/green_tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/speech_bubbles/green_tl.png -------------------------------------------------------------------------------- /htdocs/images/speech_bubbles/green_tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/speech_bubbles/green_tm.png -------------------------------------------------------------------------------- /htdocs/images/speech_bubbles/grey_bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/speech_bubbles/grey_bl.png -------------------------------------------------------------------------------- /htdocs/images/speech_bubbles/grey_bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/speech_bubbles/grey_bm.png -------------------------------------------------------------------------------- /htdocs/images/speech_bubbles/grey_br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/speech_bubbles/grey_br.png -------------------------------------------------------------------------------- /htdocs/images/speech_bubbles/grey_mi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/speech_bubbles/grey_mi.png -------------------------------------------------------------------------------- /htdocs/images/speech_bubbles/grey_ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/speech_bubbles/grey_ml.png -------------------------------------------------------------------------------- /htdocs/images/speech_bubbles/grey_mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/speech_bubbles/grey_mr.png -------------------------------------------------------------------------------- /htdocs/images/speech_bubbles/grey_tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/speech_bubbles/grey_tl.png -------------------------------------------------------------------------------- /htdocs/images/speech_bubbles/grey_tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/speech_bubbles/grey_tm.png -------------------------------------------------------------------------------- /htdocs/images/speech_bubbles/grey_tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/speech_bubbles/grey_tr.png -------------------------------------------------------------------------------- /htdocs/images/stock_avatars/default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/stock_avatars/default.gif -------------------------------------------------------------------------------- /htdocs/images/stock_avatars/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/stock_avatars/default.png -------------------------------------------------------------------------------- /htdocs/images/stock_avatars/error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/stock_avatars/error.gif -------------------------------------------------------------------------------- /htdocs/images/stock_avatars/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/stock_avatars/error.png -------------------------------------------------------------------------------- /htdocs/images/title/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/title/background.jpg -------------------------------------------------------------------------------- /htdocs/images/title/effectgames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/title/effectgames.png -------------------------------------------------------------------------------- /htdocs/images/title/grad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/title/grad.jpg -------------------------------------------------------------------------------- /htdocs/images/title/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/title/logo.gif -------------------------------------------------------------------------------- /htdocs/images/title/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/title/logo.png -------------------------------------------------------------------------------- /htdocs/images/title/nav_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/title/nav_next.png -------------------------------------------------------------------------------- /htdocs/images/title/nav_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/title/nav_prev.png -------------------------------------------------------------------------------- /htdocs/images/title/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/title/shadow.png -------------------------------------------------------------------------------- /htdocs/images/title/slideshow/assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/title/slideshow/assets.png -------------------------------------------------------------------------------- /htdocs/images/title/slideshow/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/title/slideshow/audio.png -------------------------------------------------------------------------------- /htdocs/images/title/slideshow/env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/title/slideshow/env.png -------------------------------------------------------------------------------- /htdocs/images/title/slideshow/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/title/slideshow/font.png -------------------------------------------------------------------------------- /htdocs/images/title/slideshow/game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/title/slideshow/game.png -------------------------------------------------------------------------------- /htdocs/images/title/slideshow/level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/title/slideshow/level.png -------------------------------------------------------------------------------- /htdocs/images/title/slideshow/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/title/slideshow/main.png -------------------------------------------------------------------------------- /htdocs/images/white-grad-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/white-grad-right.png -------------------------------------------------------------------------------- /htdocs/images/white-grad-small-flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/white-grad-small-flip.png -------------------------------------------------------------------------------- /htdocs/images/white-grad-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/white-grad-small.png -------------------------------------------------------------------------------- /htdocs/images/white-grad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/images/white-grad.png -------------------------------------------------------------------------------- /htdocs/index.psp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/index.psp.html -------------------------------------------------------------------------------- /htdocs/js/Debug.class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/Debug.class.js -------------------------------------------------------------------------------- /htdocs/js/Page.class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/Page.class.js -------------------------------------------------------------------------------- /htdocs/js/PageManager.class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/PageManager.class.js -------------------------------------------------------------------------------- /htdocs/js/ZeroClipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/ZeroClipboard.js -------------------------------------------------------------------------------- /htdocs/js/ZeroUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/ZeroUpload.js -------------------------------------------------------------------------------- /htdocs/js/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/api.js -------------------------------------------------------------------------------- /htdocs/js/blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/blog.js -------------------------------------------------------------------------------- /htdocs/js/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/comments.js -------------------------------------------------------------------------------- /htdocs/js/effect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/effect.js -------------------------------------------------------------------------------- /htdocs/js/growl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/growl.js -------------------------------------------------------------------------------- /htdocs/js/lib/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/lib/ajax.js -------------------------------------------------------------------------------- /htdocs/js/lib/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/lib/cookie.js -------------------------------------------------------------------------------- /htdocs/js/lib/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/lib/event.js -------------------------------------------------------------------------------- /htdocs/js/lib/high_ascii.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/lib/high_ascii.js -------------------------------------------------------------------------------- /htdocs/js/lib/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/lib/md5.js -------------------------------------------------------------------------------- /htdocs/js/lib/oop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/lib/oop.js -------------------------------------------------------------------------------- /htdocs/js/lib/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/lib/tools.js -------------------------------------------------------------------------------- /htdocs/js/lib/word_wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/lib/word_wrap.js -------------------------------------------------------------------------------- /htdocs/js/lib/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/lib/xml.js -------------------------------------------------------------------------------- /htdocs/js/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/menu.js -------------------------------------------------------------------------------- /htdocs/js/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/nav.js -------------------------------------------------------------------------------- /htdocs/js/pages/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/admin.js -------------------------------------------------------------------------------- /htdocs/js/pages/article.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/article.js -------------------------------------------------------------------------------- /htdocs/js/pages/assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/assets.js -------------------------------------------------------------------------------- /htdocs/js/pages/assets/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/assets/api.js -------------------------------------------------------------------------------- /htdocs/js/pages/assets/clip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/assets/clip.js -------------------------------------------------------------------------------- /htdocs/js/pages/assets/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/assets/copy.js -------------------------------------------------------------------------------- /htdocs/js/pages/assets/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/assets/delete.js -------------------------------------------------------------------------------- /htdocs/js/pages/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/assets/main.js -------------------------------------------------------------------------------- /htdocs/js/pages/assets/new_file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/assets/new_file.js -------------------------------------------------------------------------------- /htdocs/js/pages/assets/new_folder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/assets/new_folder.js -------------------------------------------------------------------------------- /htdocs/js/pages/assets/rename.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/assets/rename.js -------------------------------------------------------------------------------- /htdocs/js/pages/assets/transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/assets/transfer.js -------------------------------------------------------------------------------- /htdocs/js/pages/assets/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/assets/upload.js -------------------------------------------------------------------------------- /htdocs/js/pages/audio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/audio.js -------------------------------------------------------------------------------- /htdocs/js/pages/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/contact.js -------------------------------------------------------------------------------- /htdocs/js/pages/develop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/develop.js -------------------------------------------------------------------------------- /htdocs/js/pages/display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/display.js -------------------------------------------------------------------------------- /htdocs/js/pages/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/game.js -------------------------------------------------------------------------------- /htdocs/js/pages/keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/keyboard.js -------------------------------------------------------------------------------- /htdocs/js/pages/levels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/levels.js -------------------------------------------------------------------------------- /htdocs/js/pages/levels/conflict.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/levels/conflict.js -------------------------------------------------------------------------------- /htdocs/js/pages/levels/edit_info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/levels/edit_info.js -------------------------------------------------------------------------------- /htdocs/js/pages/levels/edit_map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/levels/edit_map.js -------------------------------------------------------------------------------- /htdocs/js/pages/levels/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/levels/env.js -------------------------------------------------------------------------------- /htdocs/js/pages/levels/layers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/levels/layers.js -------------------------------------------------------------------------------- /htdocs/js/pages/levels/palettes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/levels/palettes.js -------------------------------------------------------------------------------- /htdocs/js/pages/levels/scrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/levels/scrollbar.js -------------------------------------------------------------------------------- /htdocs/js/pages/levels/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/levels/toolbar.js -------------------------------------------------------------------------------- /htdocs/js/pages/levels/toolbar/eraser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/levels/toolbar/eraser.js -------------------------------------------------------------------------------- /htdocs/js/pages/levels/toolbar/hand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/levels/toolbar/hand.js -------------------------------------------------------------------------------- /htdocs/js/pages/levels/toolbar/pencil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/levels/toolbar/pencil.js -------------------------------------------------------------------------------- /htdocs/js/pages/levels/undo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/levels/undo.js -------------------------------------------------------------------------------- /htdocs/js/pages/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/main.js -------------------------------------------------------------------------------- /htdocs/js/pages/objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/objects.js -------------------------------------------------------------------------------- /htdocs/js/pages/objects/fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/objects/fonts.js -------------------------------------------------------------------------------- /htdocs/js/pages/objects/sprites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/objects/sprites.js -------------------------------------------------------------------------------- /htdocs/js/pages/objects/tiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/objects/tiles.js -------------------------------------------------------------------------------- /htdocs/js/pages/objects/tilesets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/objects/tilesets.js -------------------------------------------------------------------------------- /htdocs/js/pages/placeholder_gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/placeholder_gen.js -------------------------------------------------------------------------------- /htdocs/js/pages/publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/publish.js -------------------------------------------------------------------------------- /htdocs/js/pages/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/search.js -------------------------------------------------------------------------------- /htdocs/js/pages/ticket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/ticket.js -------------------------------------------------------------------------------- /htdocs/js/pages/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/pages/user.js -------------------------------------------------------------------------------- /htdocs/js/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/render.js -------------------------------------------------------------------------------- /htdocs/js/tools/asset_dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/tools/asset_dialog.js -------------------------------------------------------------------------------- /htdocs/js/tools/color_picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/tools/color_picker.js -------------------------------------------------------------------------------- /htdocs/js/tools/prop_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/tools/prop_editor.js -------------------------------------------------------------------------------- /htdocs/js/tools/res_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/tools/res_editor.js -------------------------------------------------------------------------------- /htdocs/js/tools/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/tools/slider.js -------------------------------------------------------------------------------- /htdocs/js/tools/sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/tools/sound.js -------------------------------------------------------------------------------- /htdocs/js/tools/sprite_req_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/tools/sprite_req_editor.js -------------------------------------------------------------------------------- /htdocs/js/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/upload.js -------------------------------------------------------------------------------- /htdocs/js/webcam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/js/webcam.js -------------------------------------------------------------------------------- /htdocs/level.psp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/level.psp.html -------------------------------------------------------------------------------- /htdocs/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/main.css -------------------------------------------------------------------------------- /htdocs/play.psp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/play.psp.html -------------------------------------------------------------------------------- /htdocs/quickplay.psp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/quickplay.psp.html -------------------------------------------------------------------------------- /htdocs/sounds/shutter.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/sounds/shutter.mp3 -------------------------------------------------------------------------------- /htdocs/style.psp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/style.psp.css -------------------------------------------------------------------------------- /htdocs/textedit.psp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/textedit.psp.html -------------------------------------------------------------------------------- /htdocs/transparent.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/transparent.cur -------------------------------------------------------------------------------- /htdocs/webcam.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/htdocs/webcam.swf -------------------------------------------------------------------------------- /lib/Doxter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/lib/Doxter.pm -------------------------------------------------------------------------------- /lib/Effect.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/lib/Effect.pm -------------------------------------------------------------------------------- /lib/Effect/Article.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/lib/Effect/Article.pm -------------------------------------------------------------------------------- /lib/Effect/Assets.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/lib/Effect/Assets.pm -------------------------------------------------------------------------------- /lib/Effect/Comments.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/lib/Effect/Comments.pm -------------------------------------------------------------------------------- /lib/Effect/Daemon.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/lib/Effect/Daemon.pm -------------------------------------------------------------------------------- /lib/Effect/Game.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/lib/Effect/Game.pm -------------------------------------------------------------------------------- /lib/Effect/GameObjects.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/lib/Effect/GameObjects.pm -------------------------------------------------------------------------------- /lib/Effect/GameRevisions.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/lib/Effect/GameRevisions.pm -------------------------------------------------------------------------------- /lib/Effect/ImageRemote.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/lib/Effect/ImageRemote.pm -------------------------------------------------------------------------------- /lib/Effect/ImageService/Plugin.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/lib/Effect/ImageService/Plugin.pm -------------------------------------------------------------------------------- /lib/Effect/ImageService/Plugin/New.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/lib/Effect/ImageService/Plugin/New.pm -------------------------------------------------------------------------------- /lib/Effect/ImageService/Plugin/Set.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/lib/Effect/ImageService/Plugin/Set.pm -------------------------------------------------------------------------------- /lib/Effect/ImageService/Plugin/Text.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/lib/Effect/ImageService/Plugin/Text.pm -------------------------------------------------------------------------------- /lib/Effect/ImageService/Plugin/Zoom.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/lib/Effect/ImageService/Plugin/Zoom.pm -------------------------------------------------------------------------------- /lib/Effect/Session.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/lib/Effect/Session.pm -------------------------------------------------------------------------------- /lib/Effect/Storage.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/lib/Effect/Storage.pm -------------------------------------------------------------------------------- /lib/Effect/Ticket.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/lib/Effect/Ticket.pm -------------------------------------------------------------------------------- /lib/Effect/User.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/lib/Effect/User.pm -------------------------------------------------------------------------------- /lib/XML/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/lib/XML/API.pm -------------------------------------------------------------------------------- /lib/XML/API/Log.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/lib/XML/API/Log.pm -------------------------------------------------------------------------------- /lib/XML/API/Perf.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/lib/XML/API/Perf.pm -------------------------------------------------------------------------------- /lib/XML/API/Tools.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/lib/XML/API/Tools.pm -------------------------------------------------------------------------------- /lib/XML/Cache.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/lib/XML/Cache.pm -------------------------------------------------------------------------------- /lib/XML/Lite.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/lib/XML/Lite.pm -------------------------------------------------------------------------------- /src/Audio.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Audio.as -------------------------------------------------------------------------------- /src/Audio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Audio.js -------------------------------------------------------------------------------- /src/Audio/Flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Audio/Flash.js -------------------------------------------------------------------------------- /src/Audio/Native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Audio/Native.js -------------------------------------------------------------------------------- /src/Audio/Titanium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Audio/Titanium.js -------------------------------------------------------------------------------- /src/Debug.class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Debug.class.js -------------------------------------------------------------------------------- /src/FontLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/FontLoader.js -------------------------------------------------------------------------------- /src/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Game.js -------------------------------------------------------------------------------- /src/ImageLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/ImageLoader.js -------------------------------------------------------------------------------- /src/LevelLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/LevelLoader.js -------------------------------------------------------------------------------- /src/Plane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Plane.js -------------------------------------------------------------------------------- /src/Plane/HUD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Plane/HUD.js -------------------------------------------------------------------------------- /src/Plane/SpritePlane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Plane/SpritePlane.js -------------------------------------------------------------------------------- /src/Plane/TilePlane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Plane/TilePlane.js -------------------------------------------------------------------------------- /src/Plane/VideoPlane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Plane/VideoPlane.js -------------------------------------------------------------------------------- /src/Portal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Portal.js -------------------------------------------------------------------------------- /src/ProgressDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/ProgressDialog.js -------------------------------------------------------------------------------- /src/Sprite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Sprite.js -------------------------------------------------------------------------------- /src/Sprite/CustomSprite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Sprite/CustomSprite.js -------------------------------------------------------------------------------- /src/Sprite/MultiSprite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Sprite/MultiSprite.js -------------------------------------------------------------------------------- /src/Sprite/StaticImageSprite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Sprite/StaticImageSprite.js -------------------------------------------------------------------------------- /src/Sprite/TextSprite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Sprite/TextSprite.js -------------------------------------------------------------------------------- /src/Tile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Tile.js -------------------------------------------------------------------------------- /src/Toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Toolbar.js -------------------------------------------------------------------------------- /src/Toolbar/Debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Toolbar/Debug.js -------------------------------------------------------------------------------- /src/Toolbar/Divider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Toolbar/Divider.js -------------------------------------------------------------------------------- /src/Toolbar/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Toolbar/Home.js -------------------------------------------------------------------------------- /src/Toolbar/Icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Toolbar/Icon.js -------------------------------------------------------------------------------- /src/Toolbar/Keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Toolbar/Keyboard.js -------------------------------------------------------------------------------- /src/Toolbar/Music.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Toolbar/Music.js -------------------------------------------------------------------------------- /src/Toolbar/PlayPause.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Toolbar/PlayPause.js -------------------------------------------------------------------------------- /src/Toolbar/Share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Toolbar/Share.js -------------------------------------------------------------------------------- /src/Toolbar/Sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Toolbar/Sound.js -------------------------------------------------------------------------------- /src/Toolbar/Zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Toolbar/Zoom.js -------------------------------------------------------------------------------- /src/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Tween.js -------------------------------------------------------------------------------- /src/Video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Video.js -------------------------------------------------------------------------------- /src/Video/Flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Video/Flash.js -------------------------------------------------------------------------------- /src/Video/Native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Video/Native.js -------------------------------------------------------------------------------- /src/Video/QuickTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/Video/QuickTime.js -------------------------------------------------------------------------------- /src/XMLLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/XMLLoader.js -------------------------------------------------------------------------------- /src/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/cookie.js -------------------------------------------------------------------------------- /src/init.js: -------------------------------------------------------------------------------- 1 | var Effect = {}; 2 | -------------------------------------------------------------------------------- /src/oop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/oop.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/utils.js -------------------------------------------------------------------------------- /src/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhuckaby/Effect-Games/HEAD/src/xml.js --------------------------------------------------------------------------------