Added basic node system

This commit is contained in:
Jan Groß
2021-06-12 13:52:53 +02:00
parent 3c737d5d4c
commit 927b1f2882
22 changed files with 8669 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Connection : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}