Initial commit

Basic plant generation and lifecycle implemented.
This commit is contained in:
2025-08-06 21:04:49 -07:00
parent 7c2cb4242f
commit 3a909fda70
94 changed files with 8592 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
using System.Collections.Generic;
using UnityEngine;
public class Core : MonoBehaviour
{
[SerializeField] public NutrientController nutrientCont;
[SerializeField] public PlantController plantCont;
[SerializeField] public Terrain ground;
public static Core instance;
private void Awake()
{
instance = this;
}
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}