Browse Source

add comment for future update

Bastien Sevajol 9 years ago
parent
commit
675a1bb57a

+ 1 - 1
intelligine/synergy/object/ant/Pheromon.py View File

@@ -1,13 +1,13 @@
1 1
 from xyzworld.SynergyObject import SynergyObject as XyzSynergyObject
2 2
 
3 3
 
4
+# TODO: ne doit plus exister. Il est la pour le display uniquement. (pheromones ne sont pas des entites)
4 5
 class Pheromon(XyzSynergyObject):
5 6
 
6 7
     def __init__(self, collection, context):
7 8
         super().__init__(collection, context)
8 9
         self._direction = None
9 10
 
10
-    # TODO: direction ailleurs non ?
11 11
     def set_direction(self, direction):
12 12
         self._direction = direction
13 13
 

+ 1 - 0
intelligine/synergy/object/ant/PheromonExploration.py View File

@@ -1,5 +1,6 @@
1 1
 from intelligine.synergy.object.ant.Pheromon import Pheromon
2 2
 
3 3
 
4
+# TODO: ne doit plus exister. Il est la pour le display uniquement. (pheromones ne sont pas des entites)
4 5
 class PheromonExploration(Pheromon):
5 6
     pass

+ 1 - 0
intelligine/synergy/object/ant/PheromonHome.py View File

@@ -1,5 +1,6 @@
1 1
 from intelligine.synergy.object.ant.Pheromon import Pheromon
2 2
 
3 3
 
4
+# TODO: ne doit plus exister. Il est la pour le display uniquement. (pheromones ne sont pas des entites)
4 5
 class PheromonHome(Pheromon):
5 6
     pass