diff --git a/Blocktest/BlocktestGame.cs b/Blocktest/BlocktestGame.cs index 42c6805..dfad804 100644 --- a/Blocktest/BlocktestGame.cs +++ b/Blocktest/BlocktestGame.cs @@ -1,4 +1,4 @@ -using Blocktest.Rendering; +using Blocktest.Rendering; using Microsoft.Xna.Framework.Input; namespace Blocktest diff --git a/Blocktest/Code/Blocks/Pykrete.cs b/Blocktest/Code/Blocks/Pykrete.cs new file mode 100644 index 0000000..80145d7 --- /dev/null +++ b/Blocktest/Code/Blocks/Pykrete.cs @@ -0,0 +1,13 @@ +namespace Blocktest.Blocks +{ + public class Pykrete : Block + { + public override void Initialize() + { + blockName = "Pykrete"; + blockID = 8; + blockSmoothing = true; + base.Initialize(); + } + } +} \ No newline at end of file diff --git a/Blocktest/Content/Graphics/Blocks/pykrete.png b/Blocktest/Content/Graphics/Blocks/pykrete.png new file mode 100644 index 0000000..1d4f62e Binary files /dev/null and b/Blocktest/Content/Graphics/Blocks/pykrete.png differ