Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using Godot;
- using Graph;
- namespace levels{
- public partial class Balcony : TheGraphSimply{
- public new string[] Con = {"","mainroom","room",""};
- public Balcony(){
- name = "balcony";
- levelNode = null;
- }
- }
- }
- using System;
- using Godot;
- using Graph;
- namespace levels{
- public partial class Entrance : TheGraphSimply{
- public new string[] Con = {"","","mainroom", ""};
- public Entrance(){
- name = "entrance";
- levelNode = null;
- }
- }
- }
- using System;
- using Godot;
- using Graph;
- namespace levels{
- public partial class Kitchen : TheGraphSimply{
- public new string[] Con = {"mainroom", "", "", ""};
- public Kitchen(){
- name = "kitchen";
- levelNode = null;
- }
- }
- }
- using System;
- using Godot;
- using Graph;
- namespace levels{
- public partial class Mainroom : TheGraphSimply{
- public new string[] Con = {"balcony", "kitchen", "", "entrance"};
- public Mainroom(){
- name = "mainroom";
- levelNode = null;
- }
- }
- }
- using System;
- using Godot;
- using Graph;
- namespace levels{
- public partial class Room1 : TheGraphSimply{
- public new string[] Con = {"","","", "balcony"};
- public Room1(){
- name = "room_1";
- levelNode = null;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement