CampfireParty.Building_Pyre.DrawPartyAndBeerSearchAreas C# (CSharp) Méthode

DrawPartyAndBeerSearchAreas() public static méthode

public static DrawPartyAndBeerSearchAreas ( IntVec3 pyrePosition ) : void
pyrePosition IntVec3
Résultat void
        public static void DrawPartyAndBeerSearchAreas(IntVec3 pyrePosition)
        {
            List<IntVec3> partyAreaCells = GetPartyAreaCells(pyrePosition);
            GenDraw.DrawFieldEdges(partyAreaCells);
            List<IntVec3> beerSearchAreaCells = GetBeerSearchAreaCells(pyrePosition);
            GenDraw.DrawFieldEdges(beerSearchAreaCells);
        }