pear can eat

This commit is contained in:
2026-03-15 19:26:12 +01:00
parent ca11f0f92f
commit fc0da039fa
3 changed files with 128 additions and 50 deletions

View File

@@ -1,7 +1,6 @@
import { Chibi } from "../../types/chibi/chibi";
import { EChibiInteraction } from "../../types/chibi/chibi-interaction";
import { Food } from "../../types/food";
import { RandomService } from "../random.service";
import { ChibiInteraction } from "./brains/aperio.brain";
export interface IBrain {
@@ -12,5 +11,5 @@ export interface IBrain {
exist(): void;
// function which resolves all interactions
resolveInteraction(interaction: EChibiInteraction, item?: Food): void
resolveInteraction(interaction: ChibiInteraction<any>): void
}