1
Fork 0
mirror of https://github.com/Steffo99/better-tee.git synced 2025-02-16 13:53:58 +00:00
better-tee/Assets/Code/Common/DrawingResults.cs
2019-09-19 12:28:02 +02:00

11 lines
No EOL
198 B
C#

using System;
[Serializable]
public class DrawingResults : ActResults {
public readonly byte[] pngBytes;
public DrawingResults(byte[] pngBytes) {
this.pngBytes = pngBytes;
}
}