From 81b254480b12f4506a26fdb1e171e1e4dbabb25a Mon Sep 17 00:00:00 2001 From: Christian Treffs Date: Wed, 21 Aug 2019 14:12:22 +0200 Subject: [PATCH] Add component documentation --- Sources/FirebladeECS/Component.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Sources/FirebladeECS/Component.swift b/Sources/FirebladeECS/Component.swift index b97f6d9..b56345d 100644 --- a/Sources/FirebladeECS/Component.swift +++ b/Sources/FirebladeECS/Component.swift @@ -5,6 +5,10 @@ // Created by Christian Treffs on 08.10.17. // +/// **Component** +/// +/// A component represents the raw data for one aspect of the object, +/// and how it interacts with the world. public protocol Component: class { static var identifier: ComponentIdentifier { get } var identifier: ComponentIdentifier { get }