mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
14 lines
334 B
C#
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;
|
|
}
|
|
}
|