Michele Caini 7 лет назад
Родитель
Сommit
bf772e5fe5
3 измененных файлов с 6 добавлено и 4 удалено
  1. 3 1
      README.md
  2. 2 2
      src/entt/entity/registry.hpp
  3. 1 1
      src/entt/resource/handle.hpp

+ 3 - 1
README.md

@@ -2600,7 +2600,9 @@ Below an incomplete list of projects and articles:
 
 
 * [EnttPong](https://github.com/reworks/EnttPong): example game for `EnTT`
 * [EnttPong](https://github.com/reworks/EnttPong): example game for `EnTT`
   framework.
   framework.
-* [ECS_SpaceBattle](https://github.com/vblanco20-1/ECS_SpaceBattle): huge space
+* [Space Battle: Huge edition](http://victor.madtriangles.com/code%20experiment/2018/06/11/post-ecs-battle-huge.html):
+  huge space battle built entirely from scratch.
+* [Space Battle](https://github.com/vblanco20-1/ECS_SpaceBattle): huge space
   battle built on `UE4`.
   battle built on `UE4`.
 * [Experimenting with ECS in UE4](http://victor.madtriangles.com/code%20experiment/2018/03/25/post-ue4-ecs-battle.html):
 * [Experimenting with ECS in UE4](http://victor.madtriangles.com/code%20experiment/2018/03/25/post-ue4-ecs-battle.html):
   interesting article about `UE4` and `EnTT`.
   interesting article about `UE4` and `EnTT`.

+ 2 - 2
src/entt/entity/registry.hpp

@@ -447,7 +447,7 @@ public:
      * An assertion will abort the execution at runtime in debug mode in case of
      * An assertion will abort the execution at runtime in debug mode in case of
      * invalid entity.
      * invalid entity.
      *
      *
-     * @param entity A valid entity identifier
+     * @param entity A valid entity identifier.
      */
      */
     void destroy(const entity_type entity) {
     void destroy(const entity_type entity) {
         assert(valid(entity));
         assert(valid(entity));
@@ -523,7 +523,7 @@ public:
      *
      *
      * @tparam Tag Type of tag to create.
      * @tparam Tag Type of tag to create.
      * @tparam Args Types of arguments to use to construct the tag.
      * @tparam Args Types of arguments to use to construct the tag.
-     * @param entity A valid entity identifier
+     * @param entity A valid entity identifier.
      * @param args Parameters to use to initialize the tag.
      * @param args Parameters to use to initialize the tag.
      * @return A reference to the newly created tag.
      * @return A reference to the newly created tag.
      */
      */

+ 1 - 1
src/entt/resource/handle.hpp

@@ -85,7 +85,7 @@ public:
     inline const Resource & operator *() const ENTT_NOEXCEPT { return get(); }
     inline const Resource & operator *() const ENTT_NOEXCEPT { return get(); }
 
 
     /**
     /**
-     * @brief Gets a pointer to the managed resource from a handle .
+     * @brief Gets a pointer to the managed resource from a handle.
      *
      *
      * @warning
      * @warning
      * The behavior is undefined if the handle doesn't contain a resource.<br/>
      * The behavior is undefined if the handle doesn't contain a resource.<br/>