Ejemplo n.º 1
0
 public void HandleShowTileInformation(EventShowTileInformation p_event)
 {
     if(p_event.IsAskingToBeShown())
     {
         this.m_current_tile_shown = p_event.tile;
         this.m_show_tile = true;
     }
     else
     {
         if(p_event.tile == this.m_current_tile_shown)
             m_show_tile = false;
     }
 }
Ejemplo n.º 2
0
 public void HandleShowTileInformation(EventShowTileInformation p_event)
 {
     if (p_event.IsAskingToBeShown())
     {
         this.m_current_tile_shown = p_event.tile;
         this.m_show_tile          = true;
     }
     else
     {
         if (p_event.tile == this.m_current_tile_shown)
         {
             m_show_tile = false;
         }
     }
 }