{"id":21500093,"url":"https://github.com/abc-engine/abc-ecs","last_synced_at":"2026-03-01T03:34:06.686Z","repository":{"id":209547395,"uuid":"723874136","full_name":"ABC-Engine/ABC-ECS","owner":"ABC-Engine","description":"An ECS for the ABC-Engine","archived":false,"fork":false,"pushed_at":"2025-09-14T01:39:06.000Z","size":100,"stargazers_count":2,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-13T03:53:07.578Z","etag":null,"topics":["easy-to-use","ecs","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ABC-Engine.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"ABC-Engine"}},"created_at":"2023-11-27T00:03:52.000Z","updated_at":"2025-09-14T01:39:09.000Z","dependencies_parsed_at":"2023-12-25T21:33:17.318Z","dependency_job_id":"fe0649f4-a709-42b2-9e56-b3cae9e78d59","html_url":"https://github.com/ABC-Engine/ABC-ECS","commit_stats":null,"previous_names":["noodlesofwrath/tasty-ecs","abc-engine/abc-ecs"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/ABC-Engine/ABC-ECS","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ABC-Engine%2FABC-ECS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ABC-Engine%2FABC-ECS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ABC-Engine%2FABC-ECS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ABC-Engine%2FABC-ECS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ABC-Engine","download_url":"https://codeload.github.com/ABC-Engine/ABC-ECS/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ABC-Engine%2FABC-ECS/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29959392,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T01:47:18.291Z","status":"online","status_checked_at":"2026-03-01T02:00:07.437Z","response_time":124,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["easy-to-use","ecs","rust"],"created_at":"2024-11-23T17:21:09.278Z","updated_at":"2026-03-01T03:34:06.660Z","avatar_url":"https://github.com/ABC-Engine.png","language":"Rust","funding_links":["https://github.com/sponsors/ABC-Engine"],"categories":[],"sub_categories":[],"readme":"# Performance\nThis ECS was built with usability in mind. That being said it is only a pseudo-ECS. As needed you can use either the run or single_entity_step and pre-step to utilize the multithreading we offer. As needed you can switch between these two methods. This ECS can be really performant if you need it to be.\n\n# ABC Game Engine - Simple ECS Framework\nThis Rust project provides a basic framework for managing game entities, components, and systems in the ABC Game Engine using an Entity Component System (ECS) approach.\n\n# Quick Example\nCreate a World:\n\n```rust\nuse ABC_ECS::World;\n\nstruct Position {\n    x: f32,\n    y: f32,\n}\n\nstruct Velocity {\n    x: f32,\n    y: f32,\n}\n\nfn main(){\n    let mut world = World::new();\n\n    let entities_and_components = \u0026mut world.entities_and_components;\n    // Add an Entity and Components:\n    let entity = entities_and_components.add_entity();\n\n    // Add components like Position and Velocity\n    entities_and_components.add_component_to(entity, Position { x: 0.0, y: 0.0 });\n    entities_and_components.add_component_to(entity, Velocity { x: 1.0, y: 1.0 });\n\n    // or you can do it in one step:\n    let entity = entities_and_components\n        .add_entity_with((Position { x: 0.0, y: 0.0 }, Velocity { x: 1.0, y: 1.0 }));\n}\n```\n\n# Documentation\nVisit the docs [here](https://github.com/ABC-Engine/ABC-ECS/wiki). \n\n# Contributing\nContributions are welcome! Start by filing an issue and we can work forward from there! If you're not sure what to work on but you want to help [Join the discord and ping me](https://discord.gg/6nTvhYRfpm), I'm happy to help!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabc-engine%2Fabc-ecs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabc-engine%2Fabc-ecs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabc-engine%2Fabc-ecs/lists"}