Skip to content

Instantly share code, notes, and snippets.

View Joseph-D-Bradshaw's full-sized avatar

Joseph Bradshaw Joseph-D-Bradshaw

  • Oslo
View GitHub Profile
@Joseph-D-Bradshaw
Joseph-D-Bradshaw / GridManager.cs
Created May 16, 2024 21:26
An attempt at learning some Godot via Conway's Game of Life in (bad) C#
using Godot;
using System;
using System.Collections.Generic;
public enum CellState
{
DEAD,
ALIVE
}
import chromadb
from pathlib import Path
def get_project_root() -> Path:
return Path(__file__).parent
if __name__ == '__main__':
project_root = get_project_root()