2022-09-16 19:49:05 -04:00
|
|
|
using Robust.Shared.GameStates;
|
2021-05-20 10:37:34 +02:00
|
|
|
|
2023-04-29 00:53:41 -04:00
|
|
|
namespace Content.Shared.Materials;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Empty component that marks an entity as a "raw" material.
|
|
|
|
|
/// The material amounts themselves are in <see cref="PhysicalCompositionComponent"/>
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent, NetworkedComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class MaterialComponent : Component
|
2021-05-20 10:37:34 +02:00
|
|
|
{
|
2023-04-29 00:53:41 -04:00
|
|
|
|
2021-05-20 10:37:34 +02:00
|
|
|
}
|
2023-04-29 00:53:41 -04:00
|
|
|
|