Advertisement
Guest User

Untitled

a guest
Oct 10th, 2024
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.39 KB | Source Code | 0 0
  1. using System;
  2. using Godot;
  3. using Graph;
  4.  
  5.  
  6. namespace levels{
  7.    
  8.     public partial class Balcony : TheGraphSimply{
  9.          public new string[] Con = {"","mainroom","room",""};
  10.         public Balcony(){
  11.             name = "balcony";
  12.             levelNode = null;
  13.  
  14.         }
  15.     }
  16.  
  17.  
  18. }
  19.  
  20.  
  21.  
  22. using System;
  23. using Godot;
  24. using Graph;
  25.  
  26.  
  27. namespace levels{
  28.    
  29.     public partial class Entrance : TheGraphSimply{
  30.         public new string[] Con = {"","","mainroom", ""};
  31.         public Entrance(){
  32.             name = "entrance";
  33.             levelNode = null;
  34.  
  35.         }
  36.     }
  37.  
  38.  
  39. }
  40.  
  41.  
  42. using System;
  43. using Godot;
  44. using Graph;
  45.  
  46.  
  47. namespace levels{
  48.    
  49.     public partial class Kitchen : TheGraphSimply{
  50.         public new string[] Con = {"mainroom", "",  "", ""};
  51.         public Kitchen(){
  52.             name = "kitchen";
  53.             levelNode = null;
  54.            
  55.  
  56.         }
  57.     }
  58.  
  59.  
  60. }
  61.  
  62.  
  63. using System;
  64. using Godot;
  65. using Graph;
  66.  
  67.  
  68. namespace levels{
  69.    
  70.     public partial class Mainroom : TheGraphSimply{
  71.         public new string[] Con = {"balcony", "kitchen", "", "entrance"};
  72.         public Mainroom(){
  73.             name = "mainroom";
  74.             levelNode = null;
  75.            
  76.            
  77.  
  78.         }
  79.     }
  80.  
  81.  
  82. }
  83.  
  84.  
  85.  
  86. using System;
  87. using Godot;
  88. using Graph;
  89.  
  90.  
  91. namespace levels{
  92.    
  93.     public partial class Room1 : TheGraphSimply{
  94.         public new string[] Con = {"","","", "balcony"};
  95.        
  96.         public Room1(){
  97.             name = "room_1";
  98.             levelNode = null;
  99.            
  100.  
  101.         }
  102.     }
  103.  
  104.  
  105. }
  106.  
  107.  
  108.  
  109.  
  110.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement