From 4758c32fbd5cba714341f9735a994fd244664ff7 Mon Sep 17 00:00:00 2001 From: realtradam Date: Wed, 7 Jul 2021 01:06:51 -0400 Subject: cleaned up documentation a little --- docs/FelFlame.html | 2 +- docs/FelFlame/Components.html | 2 +- docs/FelFlame/Entities.html | 108 +++---- docs/FelFlame/Helper.html | 2 +- docs/FelFlame/Helper/ComponentManager.html | 442 ++++++++++++++++++++--------- docs/FelFlame/Systems.html | 366 ++++++++++-------------- docs/_index.html | 2 +- docs/file.README.html | 4 +- docs/index.html | 4 +- docs/method_list.html | 40 +-- docs/top-level-namespace.html | 2 +- 11 files changed, 532 insertions(+), 442 deletions(-) (limited to 'docs') diff --git a/docs/FelFlame.html b/docs/FelFlame.html index 27527e4..9439492 100644 --- a/docs/FelFlame.html +++ b/docs/FelFlame.html @@ -193,7 +193,7 @@ diff --git a/docs/FelFlame/Components.html b/docs/FelFlame/Components.html index 5dbc160..0690cfe 100644 --- a/docs/FelFlame/Components.html +++ b/docs/FelFlame/Components.html @@ -413,7 +413,7 @@ diff --git a/docs/FelFlame/Entities.html b/docs/FelFlame/Entities.html index bf716c0..0d7b483 100644 --- a/docs/FelFlame/Entities.html +++ b/docs/FelFlame/Entities.html @@ -138,6 +138,8 @@ + readonly + @@ -470,12 +472,6 @@
 
 
-10
-11
-12
-13
-14
-15
 16
 17
 18
@@ -483,10 +479,16 @@
 20
 21
 22
-23
+23 +24 +25 +26 +27 +28 +29 -
# File 'entity_manager.rb', line 10
+      
# File 'entity_manager.rb', line 16
 
 def initialize(*components)
   # Assign new unique ID
@@ -643,12 +645,12 @@
       
 
 
-113
-114
-115
+119 +120 +121
-
# File 'entity_manager.rb', line 113
+      
# File 'entity_manager.rb', line 119
 
 def [](entity_id)
   data[entity_id]
@@ -697,12 +699,12 @@
       
 
 
-120
-121
-122
+126 +127 +128
-
# File 'entity_manager.rb', line 120
+      
# File 'entity_manager.rb', line 126
 
 def each(&block)
   data.compact.each(&block)
@@ -774,10 +776,10 @@
       
 
 
-128
+134
-
# File 'entity_manager.rb', line 128
+      
# File 'entity_manager.rb', line 134
 
 def from_json(json_string, **opts) end
@@ -855,22 +857,22 @@
 
 
-55
-56
-57
-58
-59
-60
 61
 62
 63
 64
 65
 66
-67
+67 +68 +69 +70 +71 +72 +73
-
# File 'entity_manager.rb', line 55
+      
# File 'entity_manager.rb', line 61
 
 def add(*components_to_add)
   components_to_add.each do |component|
@@ -929,12 +931,12 @@
       
 
 
-27
-28
-29
+33 +34 +35
-
# File 'entity_manager.rb', line 27
+      
# File 'entity_manager.rb', line 33
 
 def components
   @components ||= {}
@@ -988,21 +990,21 @@
       
 
 
-39
-40
-41
-42
-43
-44
 45
 46
 47
 48
 49
-50
+50 +51 +52 +53 +54 +55 +56
-
# File 'entity_manager.rb', line 39
+      
# File 'entity_manager.rb', line 45
 
 def delete
   components.each do |component_manager, component_array|
@@ -1085,17 +1087,17 @@
       
 
 
-84
-85
-86
-87
-88
-89
 90
-91
+91 +92 +93 +94 +95 +96 +97
-
# File 'entity_manager.rb', line 84
+      
# File 'entity_manager.rb', line 90
 
 def remove(*components_to_remove)
   components_to_remove.each do |component|
@@ -1149,12 +1151,12 @@
       
 
 
-33
-34
-35
+39 +40 +41
-
# File 'entity_manager.rb', line 33
+      
# File 'entity_manager.rb', line 39
 
 def to_i
   id
@@ -1208,10 +1210,10 @@
       
 
 
-96
+102
-
# File 'entity_manager.rb', line 96
+      
# File 'entity_manager.rb', line 102
 
 def to_json() end
@@ -1224,7 +1226,7 @@ diff --git a/docs/FelFlame/Helper.html b/docs/FelFlame/Helper.html index e924d44..da17761 100644 --- a/docs/FelFlame/Helper.html +++ b/docs/FelFlame/Helper.html @@ -132,7 +132,7 @@ diff --git a/docs/FelFlame/Helper/ComponentManager.html b/docs/FelFlame/Helper/ComponentManager.html index cce8c36..0d4d93a 100644 --- a/docs/FelFlame/Helper/ComponentManager.html +++ b/docs/FelFlame/Helper/ComponentManager.html @@ -120,7 +120,7 @@
  • - .addition_triggers ⇒ Object + .addition_triggers ⇒ Array<System> @@ -129,6 +129,8 @@ + readonly + @@ -137,7 +139,9 @@ -
    +
    +

    Stores references to systems that should be triggered when this component is added to an enitity.

    +
  • @@ -145,7 +149,7 @@
  • - .attr_triggers ⇒ Object + .attr_triggers ⇒ Hash<Symbol, System> @@ -154,6 +158,8 @@ + readonly + @@ -162,7 +168,9 @@ -
    +
    +

    Stores references to systems that should be triggered when an attribute from this component changed.

    +
  • @@ -170,7 +178,7 @@
  • - .removal_triggers ⇒ Object + .removal_triggers ⇒ Array<System> @@ -179,6 +187,8 @@ + readonly + @@ -187,7 +197,9 @@ -
    +
    +

    Stores references to systems that should be triggered when this component is removed from an enitity.

    +
  • @@ -200,7 +212,7 @@
  • - #addition_triggers ⇒ Object + #addition_triggers ⇒ Array<System> @@ -209,6 +221,8 @@ + readonly + @@ -217,7 +231,9 @@ -
    +
    +

    Stores references to systems that should be triggered when a component from this manager is added.

    +
  • @@ -225,7 +241,7 @@
  • - #attr_triggers ⇒ Object + #attr_triggers ⇒ Hash<Symbol, Array<System>> @@ -234,6 +250,8 @@ + readonly + @@ -242,7 +260,9 @@ -
    +
    +

    Stores references to systems that should be triggered when an attribute from this manager is changed.

    +
  • @@ -259,6 +279,8 @@ + readonly + @@ -277,7 +299,7 @@
  • - #removal_triggers ⇒ Object + #removal_triggers ⇒ Array<System> @@ -286,6 +308,8 @@ + readonly + @@ -294,7 +318,9 @@ -
    +
    +

    Stores references to systems that should be triggered when a component from this manager is removed.

    +
  • @@ -615,28 +641,28 @@
     
     
    -81
    -82
    -83
    -84
    -85
    -86
    -87
    -88
    -89
    -90
    -91
    -92
    -93
    -94
    -95
    -96
    -97
    -98
    -99
    +104 +105 +106 +107 +108 +109 +110 +111 +112 +113 +114 +115 +116 +117 +118 +119 +120 +121 +122
    -
    # File 'component_manager.rb', line 81
    +      
    # File 'component_manager.rb', line 104
     
     def initialize(**attrs)
       # Prepare the object
    @@ -672,24 +698,48 @@
           

    - .addition_triggersObject + .addition_triggersArray<System> -

    +
    +
    + +

    Stores references to systems that should be triggered when this component is added to an enitity. Do not edit this array as it is managed by FelFlame automatically.

    + + +
    +
    +
    + +

    Returns:

    +
      + +
    • + + + (Array<System>) + + + +
    • + +
    + +
     
     
    -104
    -105
    -106
    +136 +137 +138
    -
    # File 'component_manager.rb', line 104
    +      
    # File 'component_manager.rb', line 136
     
     def addition_triggers
       @addition_triggers ||= []
    @@ -704,24 +754,48 @@
           

    - .attr_triggersObject + .attr_triggersHash<Symbol, System> -

    +
    +
    + +

    Stores references to systems that should be triggered when an attribute from this component changed. Do not edit this hash as it is managed by FelFlame automatically.

    + + +
    +
    +
    + +

    Returns:

    +
      + +
    • + + + (Hash<Symbol, System>) + + + +
    • + +
    + +
     
     
    -112
    -113
    -114
    +152 +153 +154
    -
    # File 'component_manager.rb', line 112
    +      
    # File 'component_manager.rb', line 152
     
     def attr_triggers
       @attr_triggers ||= {}
    @@ -736,24 +810,48 @@
           

    - .removal_triggersObject + .removal_triggersArray<System> + + +

    +
    + +

    Stores references to systems that should be triggered when this component is removed from an enitity. Do not edit this array as it is managed by FelFlame automatically.

    + +
    +
    +
    + +

    Returns:

    +
      - +
    • + + + (Array<System>) + + + +
    • + + + +
       
       
      -108
      -109
      -110
      +144 +145 +146
      -
      # File 'component_manager.rb', line 108
      +      
      # File 'component_manager.rb', line 144
       
       def removal_triggers
         @removal_triggers ||= []
      @@ -773,24 +871,48 @@
             

      - #addition_triggersObject + #addition_triggersArray<System> -

      +
      +
      + +

      Stores references to systems that should be triggered when a component from this manager is added. Do not edit this array as it is managed by FelFlame automatically.

      + + +
      +
      +
      + +

      Returns:

      +
        + +
      • + + + (Array<System>) + + + +
      • + +
      + +
       
       
      -66
      -67
      -68
      +81 +82 +83
      -
      # File 'component_manager.rb', line 66
      +      
      # File 'component_manager.rb', line 81
       
       def addition_triggers
         @addition_triggers ||= []
      @@ -805,24 +927,48 @@
             

      - #attr_triggersObject + #attr_triggersHash<Symbol, Array<System>> -

      +
      +
      + +

      Stores references to systems that should be triggered when an attribute from this manager is changed. Do not edit this hash as it is managed by FelFlame automatically.

      + + +
      +
      +
      + +

      Returns:

      +
        + +
      • + + + (Hash<Symbol, Array<System>>) + + + +
      • + +
      + +
       
       
      -74
      -75
      -76
      +97 +98 +99
      -
      # File 'component_manager.rb', line 74
      +      
      # File 'component_manager.rb', line 97
       
       def attr_triggers
         @attr_triggers ||= {}
      @@ -873,12 +1019,12 @@
             
       
       
      -62
       63
      -64
      +64 +65
      -
      # File 'component_manager.rb', line 62
      +      
      # File 'component_manager.rb', line 63
       
       def id
         @id
      @@ -893,24 +1039,48 @@
             

      - #removal_triggersObject + #removal_triggersArray<System> + + +

      +
      + +

      Stores references to systems that should be triggered when a component from this manager is removed. Do not edit this array as it is managed by FelFlame automatically.

      + +
      +
      +
      + +

      Returns:

      +
        + +
      • + + + (Array<System>) + + + +
      • - + + +
         
         
        -70
        -71
        -72
        +89 +90 +91
        -
        # File 'component_manager.rb', line 70
        +      
        # File 'component_manager.rb', line 89
         
         def removal_triggers
           @removal_triggers ||= []
        @@ -995,12 +1165,12 @@
               
         
         
        -129
        -130
        -131
        +169 +170 +171
        -
        # File 'component_manager.rb', line 129
        +      
        # File 'component_manager.rb', line 169
         
         def [](component_id)
           data[component_id]
        @@ -1049,12 +1219,12 @@
               
         
         
        -136
        -137
        -138
        +176 +177 +178
        -
        # File 'component_manager.rb', line 136
        +      
        # File 'component_manager.rb', line 176
         
         def each(&block)
           data.compact.each(&block)
        @@ -1096,20 +1266,20 @@
               
         
         
        -162
        -163
        -164
        -165
        -166
        -167
        -168
        -169
        -170
        -171
        -172
        +202 +203 +204 +205 +206 +207 +208 +209 +210 +211 +212
        -
        # File 'component_manager.rb', line 162
        +      
        # File 'component_manager.rb', line 202
         
         def attr_changed_trigger_systems(attr)
           systems_to_execute = self.class.attr_triggers[attr]
        @@ -1171,16 +1341,16 @@
               
         
         
        -195
        -196
        -197
        -198
        -199
        -200
        -201
        +235 +236 +237 +238 +239 +240 +241
        -
        # File 'component_manager.rb', line 195
        +      
        # File 'component_manager.rb', line 235
         
         def attrs
           return_hash = instance_variables.each_with_object({}) do |key, final|
        @@ -1238,26 +1408,26 @@
               
         
         
        -176
        -177
        -178
        -179
        -180
        -181
        -182
        -183
        -184
        -185
        -186
        -187
        -188
        -189
        -190
        -191
        -192
        +216 +217 +218 +219 +220 +221 +222 +223 +224 +225 +226 +227 +228 +229 +230 +231 +232
        -
        # File 'component_manager.rb', line 176
        +      
        # File 'component_manager.rb', line 216
         
         def delete
           addition_triggers.each do |system|
        @@ -1320,12 +1490,12 @@
               
         
         
        -149
        -150
        -151
        +189 +190 +191
        -
        # File 'component_manager.rb', line 149
        +      
        # File 'component_manager.rb', line 189
         
         def entities
           @entities ||= []
        @@ -1374,12 +1544,12 @@
               
         
         
        -143
        -144
        -145
        +183 +184 +185
        -
        # File 'component_manager.rb', line 143
        +      
        # File 'component_manager.rb', line 183
         
         def to_i
           id
        @@ -1433,12 +1603,12 @@
               
         
         
        -206
        -207
        -208
        +246 +247 +248
        -
        # File 'component_manager.rb', line 206
        +      
        # File 'component_manager.rb', line 246
         
         def to_json
           # should return a json or hash of all data in this component
        @@ -1492,14 +1662,14 @@
               
         
         
        -155
        -156
        -157
        -158
        -159
        +195 +196 +197 +198 +199
        -
        # File 'component_manager.rb', line 155
        +      
        # File 'component_manager.rb', line 195
         
         def update_attrs(**opts)
           opts.each do |key, value|
        @@ -1516,7 +1686,7 @@
         
         
               
        diff --git a/docs/FelFlame/Systems.html b/docs/FelFlame/Systems.html
        index 8961bf1..1bc342a 100644
        --- a/docs/FelFlame/Systems.html
        +++ b/docs/FelFlame/Systems.html
        @@ -129,7 +129,7 @@
               
      • - #addition_triggers ⇒ Object + #addition_triggers ⇒ Array<Component> @@ -138,30 +138,7 @@ - - - - - - - - -
        - -
      • - - -
      • - - - #attr_triggers ⇒ Object - - - - - - - + readonly @@ -171,7 +148,9 @@ -
        +
        +

        Stores references to components or their managers that trigger this component when a component or component from that manager is added to an entity.

        +
      • @@ -179,7 +158,7 @@
      • - #const_name ⇒ Object + #attr_triggers ⇒ Hash<Symbol, Array<Symbol>> @@ -188,6 +167,8 @@ + readonly + @@ -197,7 +178,7 @@
        -

        The Constant name assigned to this System.

        +

        Stores references to systems that should be triggered when an attribute from this manager is changed Do not edit this hash as it is managed by FelFlame automatically.

      • @@ -206,7 +187,7 @@
      • - #frame ⇒ Object + #const_name ⇒ Object @@ -224,7 +205,7 @@
        -

        How many frames need to pass before this System is executed when controlled by Stage.

        +

        The Constant name assigned to this System.

      • @@ -260,7 +241,7 @@
      • - #removal_triggers ⇒ Object + #removal_triggers ⇒ Array<Component> @@ -269,6 +250,8 @@ + readonly + @@ -277,7 +260,9 @@ -
        +
        +

        Stores references to components or their managers that trigger this component when a component or component from that manager is removed from an entity.

        +
      • @@ -423,30 +408,6 @@

        Redefine what code is executed by this System when it is called upon.

        - - - -
      • - - - #step ⇒ Boolean - - - - - - - - - - - - - -
        -

        Attempt to execute the system following the frame parameter set on this system.

        -
        -
      • @@ -557,8 +518,7 @@ component.hp += 5 end end -# Only heal all characters with health every other frame. -# Give it a low priority so other systems such as a +# Give it a low priority so other systems such as a # Poison system would kill the player first
        @@ -624,15 +584,15 @@
         
         
        -56
        -57
        -58
        -59
        -60
        -61
        +67 +68 +69 +70 +71 +72
        -
        # File 'system_manager.rb', line 56
        +      
        # File 'system_manager.rb', line 67
         
         def initialize(name, priority: 0, &block)
           FelFlame::Systems.const_set(name, self)
        @@ -655,59 +615,51 @@
               

        - #addition_triggersObject + #addition_triggersArray<Component> -

        - - - - -
        -
        -
        +
        +
        + +

        Stores references to components or their managers that trigger this component when a component or component from that manager is added to an entity. Do not edit this hash as it is managed by FelFlame automatically.

        -14 -15 -16
        -
        -
        # File 'system_manager.rb', line 14
         
        -def addition_triggers
        -  @addition_triggers ||= []
        -end
        -
        +
        - - - -
        -

        +
        - #attr_triggersObject +

        Returns:

        +
          - +
        • + + + (Array<Component>) + + + +
        • +
        - -

        +
        @@ -715,11 +667,11 @@ - +
        -

        +

        - #const_nameObject + #attr_triggersHash<Symbol, Array<Symbol>> @@ -728,13 +680,26 @@

        -

        The Constant name assigned to this System

        +

        Stores references to systems that should be triggered when an attribute from this manager is changed Do not edit this hash as it is managed by FelFlame automatically.

        +

        Returns:

        +
          + +
        • + + + (Hash<Symbol, Array<Symbol>>) + + + +
        • + +
         
         
        -26
        -27
        -28
        +20 +21 +22
        -
        # File 'system_manager.rb', line 26
        +      
        # File 'system_manager.rb', line 20
         
        -def attr_triggers
        -  @attr_triggers ||= {}
        +def addition_triggers
        +  @addition_triggers ||= []
         end
        @@ -742,15 +707,15 @@
         
         
        -7
        -8
        -9
        +38 +39 +40 @@ -758,11 +723,11 @@ - +
        -

        +

        - #frameObject + #const_nameObject @@ -771,7 +736,7 @@

        -

        How many frames need to pass before this System is executed when controlled by FelFlame::Stage

        +

        The Constant name assigned to this System

        @@ -785,15 +750,15 @@
         
         
        -10
        -11
        -12
        +7 +8 +9
        @@ -848,24 +813,48 @@

        - #removal_triggersObject + #removal_triggersArray<Component> -

        -
        # File 'system_manager.rb', line 7
        +      
        # File 'system_manager.rb', line 38
         
        -def const_name
        -  @const_name
        +def attr_triggers
        +  @attr_triggers ||= {}
         end
        -
        # File 'system_manager.rb', line 10
        +      
        # File 'system_manager.rb', line 7
         
        -def frame
        -  @frame
        +def const_name
        +  @const_name
         end
        +
        +
        + +

        Stores references to components or their managers that trigger this component when a component or component from that manager is removed from an entity. Do not edit this hash as it is managed by FelFlame automatically.

        + + +
        +
        +
        + +

        Returns:

        +
          + +
        • + + + (Array<Component>) + + + +
        • + +
        + +
         
         
        -20
        -21
        -22
        +29 +30 +31
        -
        # File 'system_manager.rb', line 20
        +      
        # File 'system_manager.rb', line 29
         
         def removal_triggers
           @removal_triggers ||= []
        @@ -921,12 +910,12 @@
               
         
         
        -35
        -36
        -37
        +47 +48 +49
        -
        # File 'system_manager.rb', line 35
        +      
        # File 'system_manager.rb', line 47
         
         def each(&block)
           constants.map { |sym| const_get(sym) }.sort_by(&:priority).reverse.each(&block)
        @@ -968,12 +957,12 @@
               
         
         
        -64
        -65
        -66
        +75 +76 +77
        -
        # File 'system_manager.rb', line 64
        +      
        # File 'system_manager.rb', line 75
         
         def call
           @block.call
        @@ -1086,10 +1075,6 @@
               
         
         
        -103
        -104
        -105
        -106
         107
         108
         109
        @@ -1154,10 +1139,14 @@
         168
         169
         170
        -171
        +171 +172 +173 +174 +175
        -
        # File 'system_manager.rb', line 103
        +      
        # File 'system_manager.rb', line 107
         
         def clear_triggers(*trigger_types, component_or_manager: nil)
           trigger_types = [:addition_triggers, :removal_triggers, :attr_triggers] if trigger_types.empty?
        @@ -1279,12 +1268,12 @@
               
         
         
        -76
        -77
        -78
        +80 +81 +82
        -
        # File 'system_manager.rb', line 76
        +      
        # File 'system_manager.rb', line 80
         
         def redefine(&block)
           @block = block
        @@ -1292,61 +1281,6 @@
             
        -
        - -
        -

        - - #stepBoolean - - - - - -

        -
        - -

        Attempt to execute the system following the frame parameter set on this system. For example if a System has its frame set to 3, it will only execute once every third frame that is called in FelFlame::Stage

        - - -
        -
        -
        - -

        Returns:

        -
          - -
        • - - - (Boolean) - - - - — -
          -

          true if the frame of the FelFlame::Stage is a multiple of this System's frame setting and this system has executed, false otherwise where the system has not executed.

          -
          - -
        • - -
        - -
        - - - - -
        -
        -
        -
        -72
        -
        -
        # File 'system_manager.rb', line 72
        -
        -def step; end
        -
        @@ -1413,14 +1347,14 @@
         
         
        -176
        -177
        -178
        -179
        -180
        +180 +181 +182 +183 +184
        -
        # File 'system_manager.rb', line 176
        +      
        # File 'system_manager.rb', line 180
         
         def trigger_when_added(component_or_manager)
           self.addition_triggers |= [component_or_manager]
        @@ -1458,10 +1392,6 @@
               
         
         
        -192
        -193
        -194
        -195
         196
         197
         198
        @@ -1469,10 +1399,14 @@
         200
         201
         202
        -203
        +203 +204 +205 +206 +207
        -
        # File 'system_manager.rb', line 192
        +      
        # File 'system_manager.rb', line 196
         
         def trigger_when_is_changed(component_or_manager, attr)
           if component_or_manager.attr_triggers[attr].nil?
        @@ -1555,14 +1489,14 @@
               
         
         
        -185
        -186
        -187
        -188
        -189
        +189 +190 +191 +192 +193
        -
        # File 'system_manager.rb', line 185
        +      
        # File 'system_manager.rb', line 189
         
         def trigger_when_removed(component_or_manager)
           self.removal_triggers |= [component_or_manager]
        @@ -1579,7 +1513,7 @@
         
         
               
        diff --git a/docs/_index.html b/docs/_index.html
        index 1ce8693..db7838b 100644
        --- a/docs/_index.html
        +++ b/docs/_index.html
        @@ -164,7 +164,7 @@
         
         
               
        diff --git a/docs/file.README.html b/docs/file.README.html
        index ac4599e..7e811f1 100644
        --- a/docs/file.README.html
        +++ b/docs/file.README.html
        @@ -57,7 +57,7 @@
                 
        -

        FelFlame

        +

        FelFlame

        Maintainability Test Coverage @@ -373,7 +373,7 @@ complete I will use a more verbose explanation as below to help users of the fra

        diff --git a/docs/index.html b/docs/index.html index 460ae00..3326748 100644 --- a/docs/index.html +++ b/docs/index.html @@ -57,7 +57,7 @@
        -

        FelFlame

        +

        FelFlame

        Maintainability Test Coverage @@ -373,7 +373,7 @@ complete I will use a more verbose explanation as below to help users of the fra

        diff --git a/docs/method_list.html b/docs/method_list.html index 609abe6..31380fe 100644 --- a/docs/method_list.html +++ b/docs/method_list.html @@ -221,14 +221,6 @@
      • -
        - #frame - FelFlame::Systems -
        -
      • - - -
      • from_json FelFlame::Entities @@ -236,7 +228,7 @@
      • -
      • +
      • #id FelFlame::Helper::ComponentManager @@ -244,7 +236,7 @@
      • -
      • +
      • #id FelFlame::Entities @@ -252,7 +244,7 @@
      • -
      • +
      • #initialize FelFlame::Systems @@ -260,7 +252,7 @@
      • -
      • +
      • #initialize FelFlame::Helper::ComponentManager @@ -268,7 +260,7 @@
      • -
      • +
      • #initialize FelFlame::Entities @@ -276,7 +268,7 @@
      • -
      • +
      • new FelFlame::Components @@ -284,7 +276,7 @@
      • -
      • +
      • #priority FelFlame::Systems @@ -292,7 +284,7 @@
      • -
      • +
      • #redefine FelFlame::Systems @@ -300,7 +292,7 @@
      • -
      • +
      • #removal_triggers FelFlame::Systems @@ -308,7 +300,7 @@
      • -
      • +
      • #removal_triggers FelFlame::Helper::ComponentManager @@ -316,7 +308,7 @@
      • -
      • +
      • removal_triggers FelFlame::Helper::ComponentManager @@ -324,7 +316,7 @@
      • -
      • +
      • #remove FelFlame::Entities @@ -332,14 +324,6 @@
      • -
      • -
        - #step - FelFlame::Systems -
        -
      • - -
      • #to_i diff --git a/docs/top-level-namespace.html b/docs/top-level-namespace.html index 00751f9..acb7f53 100644 --- a/docs/top-level-namespace.html +++ b/docs/top-level-namespace.html @@ -127,7 +127,7 @@
        -- cgit v1.2.3