Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. abstract class FoxObject : ICloneable
  2. {
  3. public int lineNumber;
  4. public string line, name;
  5. public FoxObject parent;
  6. public List<FoxObject> children;
  7. private Guid guid;
  8.  
  9. protected FoxObject(int lineNumber, string line, string name, FoxObject parent, List<FoxObject> children)
  10. {
  11. this.lineNumber = lineNumber;
  12. this.line = line;
  13. this.name = name;
  14. this.parent = parent;
  15. this.children = children;
  16. guid = Guid.NewGuid();
  17. }
  18.  
  19. //Code not relevant to this question.
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement