We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 379b78d commit 1f78f8aCopy full SHA for 1f78f8a
battle_map_tv/aoe.py
@@ -28,15 +28,14 @@ class AreaOfEffectManager:
28
def __init__(self, window: "ImageWindow", grid: Grid):
29
self.window = window
30
self.scene = window.scene()
31
+ self.grid = grid
32
self._store: List[BaseShape] = []
33
self.rasterize = False
- self.snap_to_grid = False
34
self.waiting_for: Optional[str] = None
35
self.color = "white"
36
self.start_point: Optional[Tuple[int, int]] = None
37
self.temp_obj: Optional[BaseShape] = None
38
self.callback: Optional[Callable] = None
39
- self.grid = grid
40
self._previous_size: Optional[float] = None
41
42
def wait_for(self, shape: str, callback: Callable):
0 commit comments