This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | from abc import ABC, abstractmethod | |
| import os | |
| class Elemento(ABC): | |
| """ Classe base abstrata para os elementos do jogo """ | |
| def __init__(self): | |
| self._estado_confronto = 0 | |
| self._elemento_confronto = None | |
| @property |