CampfireParty.Building_Pyre.DrawPartyAndBeerSearchAreas C# (CSharp) Method

DrawPartyAndBeerSearchAreas() public static method

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