Go to file
Christian Treffs 02f9484d25 WIP:readme 2018-01-02 17:06:19 +01:00
Sources/FirebladeECS Cleanups 2018-01-02 15:58:08 +01:00
Tests Cleanups 2018-01-02 15:58:08 +01:00
.gitignore Add jazzy documentation config 2017-11-17 17:20:27 +01:00
.jazzy.yaml Doc config 2017-11-17 17:38:15 +01:00
.swiftlint.yml Cleanups 2018-01-02 15:58:08 +01:00
LICENSE Add MIT license 2017-12-27 05:48:01 +00:00
Package.swift Removed unused dependencies 2017-11-16 21:55:38 +01:00
README.md WIP:readme 2018-01-02 17:06:19 +01:00

README.md

Fireblade ECS (Entity-Component-System)

This is a dependency free, lightweight, fast and easy to use Entity-Component-System implementation in Swift. It is developed and maintained as part of the Fireblade Game Engine project.

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

Installing

Fireblade ECS is available for all platforms that support Swift 4.0+ and the Swift Package Manager (SPM).

Extend the following lines in your Package.swift file or use it to create a new project.

// swift-tools-version:4.0

import PackageDescription

let package = Package(
    name: "YourPackageName",
    dependencies: [
        .package(url: "https://github.com/ctreffs/fireblade-ecs.git", from: "0.3.0")
    ],
    targets: [
        .target(
            name: "YourTargetName",
            dependencies: ["FirebladeECS"])
    ]
)

End with an example of getting some data out of the system or using it for a little demo

Code Example

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Acknowledgments

  • Hat tip to anyone who's code was used
  • Inspiration
  • etc