/**
 * Common types used across the game models
 */

export type RelationshipType = 'family' | 'friend' | 'romantic' | 'acquaintance';

export interface ResourceCost {
  energyCost?: number;
  moneyCost?: number;
  diamondCost?: number;
}

export interface SimplePerson {
  id: string;
  firstname: string;
  lastname?: string;
  image?: string;
}
