Beispiel #1
0
 public void SetNova(float f, ToolNova n)
 {
     activeTool = n;
     willNova   = true;
     LightUp(true);
     timer = f;
 }
Beispiel #2
0
    public void Nova(Hex hex)
    {
        if (!hex)
        {
            return;
        }

        Hex[]    hexes      = FindAdjacent(hex);
        ToolNova activeNova = (ToolNova)hex.GetActiveTool();

        foreach (Hex h in hexes)
        {
            activeNova.CheckNova(h, hex);
        }
    }