---
layout: doc
title: Examples
description: 'Gallery of fennecs example projects: the Cubes and N-Body demos integrated with game engines like Godot and Stride, with videos and source links.'
---

# In-Engine Examples
 
 Here's a list of examples made with **fenn**ecs integrated into various game engines. The ECS code is the same, merely the transfer and interaction with the engine or framework differs.

 ::: warning WIP
Work in progress, more examples will get added over time! Want to contribute or have an engine not listed here? Reach out! We don't bite. 🦊
:::
 
<table>
    <thead>
        <th>
            What the fox?
        </th>
        <th>
            Preview
        </th>
    </thead>
    <tbody>
    <tr>
        <td style="width: 50%">
            <h4>Demo: Lots of Cubes</h4>
            <ul>
            <li>spawning and despawning many Entities</li>        
            <li>using simple Job & Raw Queries</li>
            <li>transfer data in bulk into game engine</li>
            </ul>
        </td>
        <td>
            <a href="Cubes.html">
            <video muted autoplay loop width="320">
            <source src="/video/fennecs-godot-cubes-thumb.mp4" type="video/mp4"/>
            Your browser does not support the video tag.
            </video>
            View Demo Details</a>
        </td>
    </tr>
    <tr>
        <td>
        <h4>Demo: N-Body Problem</h4>
            <ul>
            <li>Entity-Entity Relations</li>
            <li>efficient and scalable Query use</li>
            <li>writing simulation loops</li>
            </ul>
        </td>
        <td>
            <a href="NBody.html">
            <video muted autoplay loop width="320">
            <source src="/video/fennecs-godot-nbody-thumb.mp4" type="video/mp4"/>
            Your browser does not support the video tag.
            </video>
            View Demo Details</a>
        </td>
    </tr>
    </tbody>
</table>

