WalkDust() public method

public WalkDust ( int &dustType, bool &makeDust, Color &color ) : void
dustType int
makeDust bool
color Color
return void
Ejemplo n.º 1
0
        public static void WalkDust(int type, ref int dustType, ref bool makeDust, ref Color color)
        {
            ModTile modTile = GetTile(type);

            if (modTile != null)
            {
                modTile.WalkDust(ref dustType, ref makeDust, ref color);
            }
        }