mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-02 10:07:15 +02:00
13 lines
209 B
C#
13 lines
209 B
C#
using System;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Robust.Shared.Physics.Components;
|
|
|
|
// TODO: Move to content
|
|
[Serializable, NetSerializable]
|
|
public enum BodyStatus: byte
|
|
{
|
|
OnGround,
|
|
InAir
|
|
}
|