mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-16 15:22:27 +02:00
* Special check for decimal in serialization code. Changed method in IoCManager for a little QoL * ISelfSerialize stuff ISelfSerialize interface for stuff that want to implement their own (de)serialization. Forgot that desialize could exist for decimals earlier. Added ViewVariablesPropertyEditorISelfSerialzable thing for viewvariables. * fix TestStylesheetOverride * Fix improper UT logic * Somewhat neater VV lineEdit event hanlding * remove whitespace and unused using * uninherit ViewVariablesPropertyEditorISelfSerialzable * Fix improper use or ToString * seal VV classes
10 lines
173 B
C#
10 lines
173 B
C#
namespace Robust.Shared.Interfaces.Serialization
|
|
{
|
|
public interface ISelfSerialize
|
|
{
|
|
void Deserialize(string value);
|
|
|
|
string Serialize();
|
|
}
|
|
}
|