15 lines
329 B
C#
15 lines
329 B
C#
using System;
|
|
using System.IO;
|
|
using System.Runtime.Serialization.Formatters.Binary;
|
|
|
|
namespace EscapeRoomEngine.Engine.Runtime.Measurements
|
|
{
|
|
[Serializable]
|
|
public struct PuzzleMeasurement
|
|
{
|
|
public void a()
|
|
{
|
|
new BinaryFormatter().Serialize(new MemoryStream(), this);
|
|
}
|
|
}
|
|
} |