mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-14 19:29:53 +01:00
* randomize iconSmoothing
* Revert "randomize iconSmoothing"
This reverts commit 094356f975.
* try 2
* trying work with client-server communication
* still dont work
* Tayrtahn good suggestion
* remove outdated code
* Fix!
* move data to Appearance
* Update RandomIconSmoothComponent.cs
13 lines
234 B
C#
13 lines
234 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.IconSmoothing;
|
|
|
|
public abstract class SharedRandomIconSmoothSystem : EntitySystem
|
|
{
|
|
}
|
|
[Serializable, NetSerializable]
|
|
public enum RandomIconSmoothState : byte
|
|
{
|
|
State
|
|
}
|