mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
* randomize iconSmoothing * Revert "randomize iconSmoothing" This reverts commit 094356f975737c0af24ce39d849aec7852b9af6e. * 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 (cherry picked from commit d6e0114126f778c298763d05fa59ee62c28f595a)
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
|
|
}
|