-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
91 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace Blocktest.Blocks | ||
{ | ||
public class HardenedWhiteSand : Block | ||
{ | ||
public override void Initialize() | ||
{ | ||
blockName = "Hardened White Sand"; | ||
blockID = 18; | ||
blockSmoothing = true; | ||
base.Initialize(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace Blocktest.Blocks | ||
{ | ||
public class Pucestone : Block | ||
{ | ||
public override void Initialize() | ||
{ | ||
blockName = "Pucestone"; | ||
blockID = 19; | ||
blockSmoothing = true; | ||
base.Initialize(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace Blocktest.Blocks | ||
{ | ||
public class PucestoneSlab : Block | ||
{ | ||
public override void Initialize() | ||
{ | ||
blockName = "Pucestone Slab"; | ||
blockID = 22; | ||
blockSmoothing = true; | ||
base.Initialize(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace Blocktest.Blocks | ||
{ | ||
public class PurpleGrass : Block | ||
{ | ||
public override void Initialize() | ||
{ | ||
blockName = "Purple Grass"; | ||
blockID = 17; | ||
blockSmoothing = true; | ||
base.Initialize(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace Blocktest.Blocks | ||
{ | ||
public class Salt : Block | ||
{ | ||
public override void Initialize() | ||
{ | ||
blockName = "Salt"; | ||
blockID = 20; | ||
blockSmoothing = true; | ||
base.Initialize(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace Blocktest.Blocks | ||
{ | ||
public class WhiteSand : Block | ||
{ | ||
public override void Initialize() | ||
{ | ||
blockName = "White Sand"; | ||
blockID = 16; | ||
blockSmoothing = true; | ||
base.Initialize(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace Blocktest.Blocks | ||
{ | ||
public class WhiteSandstoneBrick : Block | ||
{ | ||
public override void Initialize() | ||
{ | ||
blockName = "White Sandstone Brick"; | ||
blockID = 21; | ||
blockSmoothing = true; | ||
base.Initialize(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.