* Implement closing; add open/close verbs * Add breakable seals * Allow custom verb names; make condiment bottles closeable * Remove pointless VV annotations and false defaults * Split Sealable off into a new component * Should have a Closed event too * Oh hey, there are icons I could use * Ternary operator * Add support for seal visualizers * Moved Sealable to Shared, added networking * Replaced bottle_close1.ogg
27 lines
490 B
C#
27 lines
490 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Nutrition.Components
|
|
{
|
|
// TODO: Remove maybe? Add visualizer for food
|
|
[Serializable, NetSerializable]
|
|
public enum FoodVisuals : byte
|
|
{
|
|
Visual,
|
|
MaxUses,
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum OpenableVisuals : byte
|
|
{
|
|
Opened,
|
|
Layer
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum SealableVisuals : byte
|
|
{
|
|
Sealed,
|
|
Layer,
|
|
}
|
|
}
|