Advertisement
Kalciphoz

Class Extension pt. 2

Jun 30th, 2016
3,090
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.29 KB | None | 0 0
  1. namespace TutorialProject //This is the NAMESPACE, or name of the project. In Modding, this will usually be the name of the Mod.
  2. {
  3.     public class Extension : ClassTutorial
  4.     {
  5.         public string additionalInfo;
  6.  
  7.         public Extension(string s) : base()
  8.         {
  9.             additionalInfo = s;
  10.         }
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement