Small fixes

This commit is contained in:
rendo 2026-04-02 13:44:15 +05:00
commit bfce0362b9
4 changed files with 2 additions and 1 deletions

View file

@ -13,6 +13,7 @@ pub struct Plant {
#[godot_api]
impl INode2D for Plant {
//
fn ready(&mut self) {
let Some(genome) = self.genome.clone() else { return; };

View file

@ -1,7 +1,7 @@
use godot::prelude::*;
pub mod genetics;
pub mod wrapper;
pub mod godot_wrapper;
struct PVZGenetics;