2021-10-29 01:18:43 -07:00
|
|
|
using Robust.Shared.Map;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Atmos.EntitySystems
|
|
|
|
|
{
|
|
|
|
|
/* doesn't seem to be a use for this at the moment, so it's disabled
|
2022-02-16 00:23:23 -07:00
|
|
|
public sealed class AtmosExposedSystem : EntitySystem
|
2021-10-29 01:18:43 -07:00
|
|
|
{}
|
|
|
|
|
*/
|
|
|
|
|
|
2021-12-27 18:50:43 +01:00
|
|
|
[ByRefEvent]
|
2021-10-29 01:18:43 -07:00
|
|
|
public readonly struct AtmosExposedUpdateEvent
|
|
|
|
|
{
|
|
|
|
|
public readonly EntityCoordinates Coordinates;
|
|
|
|
|
public readonly GasMixture GasMixture;
|
|
|
|
|
|
|
|
|
|
public AtmosExposedUpdateEvent(EntityCoordinates coordinates, GasMixture mixture)
|
|
|
|
|
{
|
|
|
|
|
Coordinates = coordinates;
|
|
|
|
|
GasMixture = mixture;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-02-19 17:42:01 -07:00
|
|
|
|
|
|
|
|
[ByRefEvent]
|
|
|
|
|
public struct AtmosExposedGetAirEvent
|
|
|
|
|
{
|
|
|
|
|
public GasMixture? Gas;
|
|
|
|
|
}
|
2021-10-29 01:18:43 -07:00
|
|
|
}
|