This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import chromadb | |
from pathlib import Path | |
def get_project_root() -> Path: | |
return Path(__file__).parent | |
if __name__ == '__main__': | |
project_root = get_project_root() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Godot; | |
using System; | |
using System.Collections.Generic; | |
public enum CellState | |
{ | |
DEAD, | |
ALIVE | |
} |