Created
December 15, 2015 05:52
-
-
Save minecraftmuse3/b33f879482dfffd07833 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#include "TestSword.h" | |
TestSword::TestSword(const std::string& name,int id, const std::string& textureName, const Material&) { | |
ItemSword(name, id, textureName, material); | |
} |
This file contains hidden or 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
#include "ItemSword.h" | |
class TestSword : public ItemSword { | |
public: | |
TestSword(const std::string&, int, const std::string&, const Material&); | |
} |
and how to make a new material? also can u make a ItemSword.h gist?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You will need an ItemSword.h