# XWUIGameKillFeed

A scrolling kill/elimination feed that appends entries with `addEntry(killer, victim, weapon?, icon?)`, each fading after `fadeTime` ms and auto-trimming to the newest `maxEntries`. Anchor it with `position` (`top-right` or `top-left`), toggle weapon/event glyphs with `showIcons`, and call `clear()` to drop all entries at once.

## Basic Usage

Mounts the feed top-right (max 5 entries) and immediately pushes three weapon eliminations with `addEntry()` so the feed renders populated.

```example
file: examples/BasicUsage.ts
html: examples/BasicUsage.html
title: Basic Usage
description: A top-right kill feed populated with three weapon eliminations via addEntry().
```

## Top-Left Feed

Re-anchors the feed to the upper-left corner with the `position` config while keeping weapon icons on.

```example
file: examples/TopLeftFeed.ts
html: examples/TopLeftFeed.html
title: Top-Left Feed
description: An elimination feed anchored top-left via position with weapon icons enabled.
```

## Compact No-Icons Feed

Turns off glyphs with `showIcons: false` and caps `maxEntries` at 3 so a fourth kill trims the oldest entry.

```example
file: examples/CompactNoIcons.ts
html: examples/CompactNoIcons.html
title: Compact No-Icons Feed
description: A text-only feed with showIcons off and maxEntries 3, trimming the oldest entry on overflow.
```

```api
```
