From: Alec Thomas Date: Mon, 9 Feb 2015 00:59:48 +0000 (+1100) Subject: More README udpates. X-Git-Url: https://code.bitgloo.com/?a=commitdiff_plain;h=ca2d0595d90677aba7d6fc21c45fe399851e7125;p=clyne%2Fentityx.git More README udpates. --- diff --git a/README.md b/README.md index ac9c14c..f448885 100644 --- a/README.md +++ b/README.md @@ -109,7 +109,7 @@ entity.destroy(); The general idea with the EntityX interpretation of ECS is to have as little logic in components as possible. All logic should be contained in Systems. -To that end Components are typically [POD types](http://en.wikipedia.org/wiki/Plain_Old_Data_Structures) consisting of self-contained sets of related data. Implementations are [curiously recurring template pattern](http://en.wikipedia.org/wiki/Curiously_recurring_template_pattern) (CRTP) subclasses of `entityx::Component`. +To that end Components are typically [POD types](http://en.wikipedia.org/wiki/Plain_Old_Data_Structures) consisting of self-contained sets of related data. Components can be any user defined struct/class. #### Creating components