Files
RobustToolbox/Robust.Shared/Map/MapGridHelpers.cs
Acruid 22bf1516cf Adds the new PhysShapeGrid.
Grids now have their own collision group.
2020-01-09 18:26:54 -08:00

14 lines
334 B
C#

namespace Robust.Shared.Map
{
/// <summary>
/// Various helper constants and functions for map grids.
/// </summary>
public static class MapGridHelpers
{
/// <summary>
/// The fixed collision group of a map grid.
/// </summary>
public const int CollisionGroup = 1 << 31;
}
}