-
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.
Merge pull request #8 from Imaginos16/blockpack-one
Blockpack One
- Loading branch information
Showing
13 changed files
with
80 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
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 Asphalt : Block | ||
{ | ||
public override void Initialize() | ||
{ | ||
blockName = "Asphalt"; | ||
blockID = 9; | ||
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 Brick : Block | ||
{ | ||
public override void Initialize() | ||
{ | ||
blockName = "Brick"; | ||
blockID = 10; | ||
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 Concrete : Block | ||
{ | ||
public override void Initialize() | ||
{ | ||
blockName = "Concrete"; | ||
blockID = 14; | ||
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 SmoothMetal : Block | ||
{ | ||
public override void Initialize() | ||
{ | ||
blockName = "Smooth Metal"; | ||
blockID = 12; | ||
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 StonePathBrick : Block | ||
{ | ||
public override void Initialize() | ||
{ | ||
blockName = "Stone Path Brick"; | ||
blockID = 13; | ||
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 WoodPanel : Block | ||
{ | ||
public override void Initialize() | ||
{ | ||
blockName = "Wood Panel"; | ||
blockID = 11; | ||
blockSmoothing = true; | ||
base.Initialize(); | ||
} | ||
} | ||
} |
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.