9 lines
328 B
TypeScript
9 lines
328 B
TypeScript
import { EChibiInteraction } from "../../types/chibi/chibi-interaction";
|
|
import { EChibiStateName } from "../../types/chibi/chibi-state-name";
|
|
|
|
export interface IBrain {
|
|
|
|
//function for time passegs + autonomous state changes
|
|
|
|
resolveInteraction(state: EChibiStateName, interaction: EChibiInteraction): EChibiStateName
|
|
} |