Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. namespace VMP_CNR
  2. {
  3.  
  4. public class House
  5. {
  6. public int id { get; set; }
  7. public int type { get; set; }
  8. public int price { get; set; }
  9. public int interiorid { get; set; }
  10. public string owner { get; set; }
  11. public Vector3 _pos { get; set; }
  12. public float heading { get; set; }
  13. public bool locked { get; set; }
  14. public int maxrents { get; set; }
  15. public int rent { get; set; }
  16. public int inv_cash { get; set; }
  17. public int belastet { get; set; }
  18. public TextLabel label { get; set; }
  19. public string inventory { get; set; }
  20. }
  21.  
  22. public class HouseSystem
  23. {
  24. string sql = "";
  25. private int Max_Houses = 0;
  26. List<House> house = new List<House>();
  27.  
  28. public HouseSystem()
  29. {
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement