Initial upload
22
.gitattributes
vendored
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
# Auto detect text files and perform LF normalization
|
||||||
|
* text=auto
|
||||||
|
|
||||||
|
# Custom for Visual Studio
|
||||||
|
*.cs diff=csharp
|
||||||
|
*.sln merge=union
|
||||||
|
*.csproj merge=union
|
||||||
|
*.vbproj merge=union
|
||||||
|
*.fsproj merge=union
|
||||||
|
*.dbproj merge=union
|
||||||
|
|
||||||
|
# Standard to msysgit
|
||||||
|
*.doc diff=astextplain
|
||||||
|
*.DOC diff=astextplain
|
||||||
|
*.docx diff=astextplain
|
||||||
|
*.DOCX diff=astextplain
|
||||||
|
*.dot diff=astextplain
|
||||||
|
*.DOT diff=astextplain
|
||||||
|
*.pdf diff=astextplain
|
||||||
|
*.PDF diff=astextplain
|
||||||
|
*.rtf diff=astextplain
|
||||||
|
*.RTF diff=astextplain
|
163
.gitignore
vendored
Normal file
@ -0,0 +1,163 @@
|
|||||||
|
#################
|
||||||
|
## Eclipse
|
||||||
|
#################
|
||||||
|
|
||||||
|
*.pydevproject
|
||||||
|
.project
|
||||||
|
.metadata
|
||||||
|
bin/
|
||||||
|
tmp/
|
||||||
|
*.tmp
|
||||||
|
*.bak
|
||||||
|
*.swp
|
||||||
|
*~.nib
|
||||||
|
local.properties
|
||||||
|
.classpath
|
||||||
|
.settings/
|
||||||
|
.loadpath
|
||||||
|
|
||||||
|
# External tool builders
|
||||||
|
.externalToolBuilders/
|
||||||
|
|
||||||
|
# Locally stored "Eclipse launch configurations"
|
||||||
|
*.launch
|
||||||
|
|
||||||
|
# CDT-specific
|
||||||
|
.cproject
|
||||||
|
|
||||||
|
# PDT-specific
|
||||||
|
.buildpath
|
||||||
|
|
||||||
|
|
||||||
|
#################
|
||||||
|
## Visual Studio
|
||||||
|
#################
|
||||||
|
|
||||||
|
## Ignore Visual Studio temporary files, build results, and
|
||||||
|
## files generated by popular Visual Studio add-ons.
|
||||||
|
|
||||||
|
# User-specific files
|
||||||
|
*.suo
|
||||||
|
*.user
|
||||||
|
*.sln.docstates
|
||||||
|
|
||||||
|
# Build results
|
||||||
|
[Dd]ebug/
|
||||||
|
[Rr]elease/
|
||||||
|
*_i.c
|
||||||
|
*_p.c
|
||||||
|
*.ilk
|
||||||
|
*.meta
|
||||||
|
*.obj
|
||||||
|
*.pch
|
||||||
|
*.pdb
|
||||||
|
*.pgc
|
||||||
|
*.pgd
|
||||||
|
*.rsp
|
||||||
|
*.sbr
|
||||||
|
*.tlb
|
||||||
|
*.tli
|
||||||
|
*.tlh
|
||||||
|
*.tmp
|
||||||
|
*.vspscc
|
||||||
|
.builds
|
||||||
|
*.dotCover
|
||||||
|
|
||||||
|
## TODO: If you have NuGet Package Restore enabled, uncomment this
|
||||||
|
#packages/
|
||||||
|
|
||||||
|
# Visual C++ cache files
|
||||||
|
ipch/
|
||||||
|
*.aps
|
||||||
|
*.ncb
|
||||||
|
*.opensdf
|
||||||
|
*.sdf
|
||||||
|
|
||||||
|
# Visual Studio profiler
|
||||||
|
*.psess
|
||||||
|
*.vsp
|
||||||
|
|
||||||
|
# ReSharper is a .NET coding add-in
|
||||||
|
_ReSharper*
|
||||||
|
|
||||||
|
# Installshield output folder
|
||||||
|
[Ee]xpress
|
||||||
|
|
||||||
|
# DocProject is a documentation generator add-in
|
||||||
|
DocProject/buildhelp/
|
||||||
|
DocProject/Help/*.HxT
|
||||||
|
DocProject/Help/*.HxC
|
||||||
|
DocProject/Help/*.hhc
|
||||||
|
DocProject/Help/*.hhk
|
||||||
|
DocProject/Help/*.hhp
|
||||||
|
DocProject/Help/Html2
|
||||||
|
DocProject/Help/html
|
||||||
|
|
||||||
|
# Click-Once directory
|
||||||
|
publish
|
||||||
|
|
||||||
|
# Others
|
||||||
|
[Bb]in
|
||||||
|
[Oo]bj
|
||||||
|
sql
|
||||||
|
TestResults
|
||||||
|
*.Cache
|
||||||
|
ClientBin
|
||||||
|
stylecop.*
|
||||||
|
~$*
|
||||||
|
*.dbmdl
|
||||||
|
Generated_Code #added for RIA/Silverlight projects
|
||||||
|
|
||||||
|
# Backup & report files from converting an old project file to a newer
|
||||||
|
# Visual Studio version. Backup files are not needed, because we have git ;-)
|
||||||
|
_UpgradeReport_Files/
|
||||||
|
Backup*/
|
||||||
|
UpgradeLog*.XML
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
############
|
||||||
|
## Windows
|
||||||
|
############
|
||||||
|
|
||||||
|
# Windows image file caches
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# Folder config file
|
||||||
|
Desktop.ini
|
||||||
|
|
||||||
|
|
||||||
|
#############
|
||||||
|
## Python
|
||||||
|
#############
|
||||||
|
|
||||||
|
*.py[co]
|
||||||
|
|
||||||
|
# Packages
|
||||||
|
*.egg
|
||||||
|
*.egg-info
|
||||||
|
dist
|
||||||
|
build
|
||||||
|
eggs
|
||||||
|
parts
|
||||||
|
bin
|
||||||
|
var
|
||||||
|
sdist
|
||||||
|
develop-eggs
|
||||||
|
.installed.cfg
|
||||||
|
|
||||||
|
# Installer logs
|
||||||
|
pip-log.txt
|
||||||
|
|
||||||
|
# Unit test / coverage reports
|
||||||
|
.coverage
|
||||||
|
.tox
|
||||||
|
|
||||||
|
#Translations
|
||||||
|
*.mo
|
||||||
|
|
||||||
|
#Mr Developer
|
||||||
|
.mr.developer.cfg
|
||||||
|
|
||||||
|
# Mac crap
|
||||||
|
.DS_Store
|
BIN
textures/bucket.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
textures/bucket_lava.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
textures/bucket_water.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
textures/crack_anylength.png
Normal file
After Width: | Height: | Size: 140 KiB |
BIN
textures/default_apple.png
Normal file
After Width: | Height: | Size: 9.1 KiB |
BIN
textures/default_book.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
textures/default_bookshelf.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
textures/default_brick.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
textures/default_cactus_side.png
Normal file
After Width: | Height: | Size: 35 KiB |
BIN
textures/default_cactus_top.png
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
textures/default_chest_front.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
textures/default_chest_lock.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
textures/default_chest_side.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
textures/default_chest_top.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
textures/default_clay.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
textures/default_clay_brick.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
textures/default_clay_lump.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
textures/default_coal_lump.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
textures/default_cobble.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
textures/default_desert_sand.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
textures/default_desert_stone.png
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
textures/default_dirt.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
textures/default_furnace_front.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
textures/default_furnace_front_active.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
textures/default_furnace_side.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
textures/default_furnace_top.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
textures/default_glass.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
textures/default_grass.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
textures/default_grass_side.png
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
textures/default_gravel.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
textures/default_iron_lump.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
textures/default_junglegrass.png
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
textures/default_jungletree.png
Normal file
After Width: | Height: | Size: 135 KiB |
BIN
textures/default_jungletree_top.png
Normal file
After Width: | Height: | Size: 131 KiB |
BIN
textures/default_ladder.png
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
textures/default_lava_flowing_animated.png
Normal file
After Width: | Height: | Size: 1.5 MiB |
BIN
textures/default_lava_source_animated.png
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
textures/default_leaves.png
Normal file
After Width: | Height: | Size: 40 KiB |
BIN
textures/default_mese.png
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
textures/default_mineral_coal.png
Normal file
After Width: | Height: | Size: 42 KiB |
BIN
textures/default_mineral_iron.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
textures/default_paper.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
textures/default_papyrus.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
textures/default_rail.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
textures/default_rail_crossing.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
textures/default_rail_curved.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
textures/default_rail_t_junction.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
textures/default_sand.png
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
textures/default_sandstone.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
textures/default_sapling.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
textures/default_steel_block.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
textures/default_steel_ingot.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
textures/default_stick.png
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
textures/default_stone.png
Normal file
After Width: | Height: | Size: 41 KiB |
BIN
textures/default_tool_mesepick.png
Normal file
After Width: | Height: | Size: 8.2 KiB |
BIN
textures/default_tool_steelaxe.png
Normal file
After Width: | Height: | Size: 9.6 KiB |
BIN
textures/default_tool_steelpick.png
Normal file
After Width: | Height: | Size: 7.1 KiB |
BIN
textures/default_tool_steelshovel.png
Normal file
After Width: | Height: | Size: 8.1 KiB |
BIN
textures/default_tool_steelsword.png
Normal file
After Width: | Height: | Size: 8.6 KiB |
BIN
textures/default_tool_stoneaxe.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
textures/default_tool_stonepick.png
Normal file
After Width: | Height: | Size: 7.4 KiB |
BIN
textures/default_tool_stoneshovel.png
Normal file
After Width: | Height: | Size: 7.7 KiB |
BIN
textures/default_tool_stonesword.png
Normal file
After Width: | Height: | Size: 9.0 KiB |
BIN
textures/default_tool_woodaxe.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
textures/default_tool_woodpick.png
Normal file
After Width: | Height: | Size: 7.4 KiB |
BIN
textures/default_tool_woodshovel.png
Normal file
After Width: | Height: | Size: 8.8 KiB |
BIN
textures/default_tool_woodsword.png
Normal file
After Width: | Height: | Size: 9.7 KiB |
BIN
textures/default_torch.png
Normal file
After Width: | Height: | Size: 7.9 KiB |
BIN
textures/default_torch_on_ceiling.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
BIN
textures/default_torch_on_floor.png
Normal file
After Width: | Height: | Size: 3.9 KiB |
BIN
textures/default_tree.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
textures/default_tree_top.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
textures/default_water.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
textures/default_wood.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
textures/diamond.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
textures/flower_waterlily.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
textures/heart.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
textures/menubg.png
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
textures/menulogo.png
Normal file
After Width: | Height: | Size: 58 KiB |
BIN
textures/moreblocks_stonebrick.png
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
textures/moreblocks_stonesquare.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
textures/moreores_bronze_block.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
textures/moreores_bronze_ingot.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
textures/moreores_copper_ingot.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
textures/moreores_copper_lump.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
textures/moreores_copper_rail.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
textures/moreores_copper_rail_crossing.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
textures/moreores_copper_rail_t_junction.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
textures/moreores_coppert_rail_curved.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
textures/moreores_gold_block.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
textures/moreores_gold_ingot.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
textures/moreores_gold_lump.png
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
textures/moreores_mineral_copper.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
textures/moreores_mineral_gold.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
textures/moreores_mineral_mithril.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
textures/moreores_mineral_silver.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
textures/moreores_mineral_tin.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
textures/moreores_mithril_block.png
Normal file
After Width: | Height: | Size: 23 KiB |