First commit
This is the first commit of the texture pack.
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
|
215
.gitignore
vendored
Normal file
@ -0,0 +1,215 @@
|
||||
#################
|
||||
## 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/
|
||||
x64/
|
||||
build/
|
||||
[Bb]in/
|
||||
[Oo]bj/
|
||||
|
||||
# MSTest test Results
|
||||
[Tt]est[Rr]esult*/
|
||||
[Bb]uild[Ll]og.*
|
||||
|
||||
*_i.c
|
||||
*_p.c
|
||||
*.ilk
|
||||
*.meta
|
||||
*.obj
|
||||
*.pch
|
||||
*.pdb
|
||||
*.pgc
|
||||
*.pgd
|
||||
*.rsp
|
||||
*.sbr
|
||||
*.tlb
|
||||
*.tli
|
||||
*.tlh
|
||||
*.tmp
|
||||
*.tmp_proj
|
||||
*.log
|
||||
*.vspscc
|
||||
*.vssscc
|
||||
.builds
|
||||
*.pidb
|
||||
*.log
|
||||
*.scc
|
||||
|
||||
# Visual C++ cache files
|
||||
ipch/
|
||||
*.aps
|
||||
*.ncb
|
||||
*.opensdf
|
||||
*.sdf
|
||||
*.cachefile
|
||||
|
||||
# Visual Studio profiler
|
||||
*.psess
|
||||
*.vsp
|
||||
*.vspx
|
||||
|
||||
# Guidance Automation Toolkit
|
||||
*.gpState
|
||||
|
||||
# ReSharper is a .NET coding add-in
|
||||
_ReSharper*/
|
||||
*.[Rr]e[Ss]harper
|
||||
|
||||
# TeamCity is a build add-in
|
||||
_TeamCity*
|
||||
|
||||
# DotCover is a Code Coverage Tool
|
||||
*.dotCover
|
||||
|
||||
# NCrunch
|
||||
*.ncrunch*
|
||||
.*crunch*.local.xml
|
||||
|
||||
# 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/
|
||||
|
||||
# Publish Web Output
|
||||
*.Publish.xml
|
||||
*.pubxml
|
||||
|
||||
# NuGet Packages Directory
|
||||
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
|
||||
#packages/
|
||||
|
||||
# Windows Azure Build Output
|
||||
csx
|
||||
*.build.csdef
|
||||
|
||||
# Windows Store app package directory
|
||||
AppPackages/
|
||||
|
||||
# Others
|
||||
sql/
|
||||
*.Cache
|
||||
ClientBin/
|
||||
[Ss]tyle[Cc]op.*
|
||||
~$*
|
||||
*~
|
||||
*.dbmdl
|
||||
*.[Pp]ublish.xml
|
||||
*.pfx
|
||||
*.publishsettings
|
||||
|
||||
# RIA/Silverlight projects
|
||||
Generated_Code/
|
||||
|
||||
# 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
|
||||
UpgradeLog*.htm
|
||||
|
||||
# SQL Server files
|
||||
App_Data/*.mdf
|
||||
App_Data/*.ldf
|
||||
|
||||
#############
|
||||
## Windows detritus
|
||||
#############
|
||||
|
||||
# Windows image file caches
|
||||
Thumbs.db
|
||||
ehthumbs.db
|
||||
|
||||
# Folder config file
|
||||
Desktop.ini
|
||||
|
||||
# Recycle Bin used on file shares
|
||||
$RECYCLE.BIN/
|
||||
|
||||
# Mac crap
|
||||
.DS_Store
|
||||
|
||||
|
||||
#############
|
||||
## Python
|
||||
#############
|
||||
|
||||
*.py[co]
|
||||
|
||||
# Packages
|
||||
*.egg
|
||||
*.egg-info
|
||||
dist/
|
||||
build/
|
||||
eggs/
|
||||
parts/
|
||||
var/
|
||||
sdist/
|
||||
develop-eggs/
|
||||
.installed.cfg
|
||||
|
||||
# Installer logs
|
||||
pip-log.txt
|
||||
|
||||
# Unit test / coverage reports
|
||||
.coverage
|
||||
.tox
|
||||
|
||||
#Translations
|
||||
*.mo
|
||||
|
||||
#Mr Developer
|
||||
.mr.developer.cfg
|
BIN
colour_white.png
Normal file
After Width: | Height: | Size: 876 KiB |
BIN
default_bookshelf.png
Normal file
After Width: | Height: | Size: 126 KiB |
BIN
default_brick.png
Normal file
After Width: | Height: | Size: 516 KiB |
BIN
default_cobble.png
Normal file
After Width: | Height: | Size: 803 KiB |
BIN
default_desert_sand.png
Normal file
After Width: | Height: | Size: 984 KiB |
BIN
default_desert_stone.png
Normal file
After Width: | Height: | Size: 942 KiB |
BIN
default_dirt.png
Normal file
After Width: | Height: | Size: 973 KiB |
BIN
default_dirt_grass.png
Normal file
After Width: | Height: | Size: 1001 KiB |
BIN
default_glass.png
Normal file
After Width: | Height: | Size: 95 B |
BIN
default_grass.png
Normal file
After Width: | Height: | Size: 1001 KiB |
BIN
default_grass_1.png
Normal file
After Width: | Height: | Size: 252 KiB |
BIN
default_grass_2.png
Normal file
After Width: | Height: | Size: 175 KiB |
BIN
default_grass_3.png
Normal file
After Width: | Height: | Size: 195 KiB |
BIN
default_grass_4.png
Normal file
After Width: | Height: | Size: 220 KiB |
BIN
default_grass_5.png
Normal file
After Width: | Height: | Size: 157 KiB |
BIN
default_grass_side.png
Normal file
After Width: | Height: | Size: 834 KiB |
BIN
default_gravel.png
Normal file
After Width: | Height: | Size: 803 KiB |
BIN
default_junglegrass.png
Normal file
After Width: | Height: | Size: 252 KiB |
BIN
default_junglewood.png
Normal file
After Width: | Height: | Size: 926 KiB |
BIN
default_ladder.png
Normal file
After Width: | Height: | Size: 296 KiB |
BIN
default_lava.png
Normal file
After Width: | Height: | Size: 603 KiB |
BIN
default_lava_flowing_animated.png
Normal file
After Width: | Height: | Size: 2.3 MiB |
BIN
default_lava_source_animated.png
Normal file
After Width: | Height: | Size: 603 KiB |
BIN
default_leaves.png
Normal file
After Width: | Height: | Size: 728 KiB |
BIN
default_mineral_coal.png
Normal file
After Width: | Height: | Size: 78 KiB |
BIN
default_mineral_copper.png
Normal file
After Width: | Height: | Size: 259 KiB |
BIN
default_mineral_diamond.png
Normal file
After Width: | Height: | Size: 167 KiB |
BIN
default_mineral_gold.png
Normal file
After Width: | Height: | Size: 321 KiB |
BIN
default_mineral_iron.png
Normal file
After Width: | Height: | Size: 218 KiB |
BIN
default_mineral_mese.png
Normal file
After Width: | Height: | Size: 174 KiB |
BIN
default_rail.png
Normal file
After Width: | Height: | Size: 854 KiB |
BIN
default_rail_crossing.png
Normal file
After Width: | Height: | Size: 819 KiB |
BIN
default_rail_curved.png
Normal file
After Width: | Height: | Size: 851 KiB |
BIN
default_rail_t_junction.png
Normal file
After Width: | Height: | Size: 838 KiB |
BIN
default_sand.png
Normal file
After Width: | Height: | Size: 990 KiB |
BIN
default_sandstone.png
Normal file
After Width: | Height: | Size: 949 KiB |
BIN
default_stone.png
Normal file
After Width: | Height: | Size: 980 KiB |
BIN
default_torch.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
default_torch_animated.png
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
default_torch_on_ceiling.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
default_torch_on_ceiling_animated.png
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
default_torch_on_floor.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
default_torch_on_floor_animated.png
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
default_tree.png
Normal file
After Width: | Height: | Size: 945 KiB |
BIN
default_tree_top.png
Normal file
After Width: | Height: | Size: 931 KiB |
BIN
default_water.png
Normal file
After Width: | Height: | Size: 954 KiB |
BIN
default_water_flowing_animated.png
Normal file
After Width: | Height: | Size: 3.7 MiB |
BIN
default_water_source_animated.png
Normal file
After Width: | Height: | Size: 954 KiB |
BIN
fire_basic_flame.png
Normal file
After Width: | Height: | Size: 618 KiB |
BIN
fire_basic_flame_animated.png
Normal file
After Width: | Height: | Size: 1.2 MiB |
BIN
glowstone_glowstone.png
Normal file
After Width: | Height: | Size: 122 KiB |
BIN
grounds_dirt_grass.png
Normal file
After Width: | Height: | Size: 1001 KiB |
BIN
homedecor_door_wood_plain_left_bottom.png
Normal file
After Width: | Height: | Size: 209 KiB |
BIN
homedecor_door_wood_plain_left_top.png
Normal file
After Width: | Height: | Size: 208 KiB |
BIN
homedecor_door_wood_plain_right_bottom.png
Normal file
After Width: | Height: | Size: 209 KiB |
BIN
homedecor_door_wood_plain_right_top.png
Normal file
After Width: | Height: | Size: 210 KiB |
BIN
moon_brick.png
Normal file
After Width: | Height: | Size: 170 KiB |
BIN
moon_dust.png
Normal file
After Width: | Height: | Size: 170 KiB |
BIN
moon_rock.png
Normal file
After Width: | Height: | Size: 170 KiB |
BIN
moreblocks_wood_tile_full.png
Normal file
After Width: | Height: | Size: 950 KiB |
BIN
nether_glowstone.png
Normal file
After Width: | Height: | Size: 122 KiB |
BIN
nether_rack.png
Normal file
After Width: | Height: | Size: 878 KiB |
BIN
torch_inventory.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
torch_on_ceiling.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
torch_on_floor.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
wool_white.png
Normal file
After Width: | Height: | Size: 876 KiB |