Files
sbox-public/engine/Sandbox.Services/Api/Models/Screenshot.cs
s&box team 71f266059a Open source release
This commit imports the C# engine code and game files, excluding C++ source code.

[Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
2025-11-24 09:05:18 +00:00

18 lines
464 B
C#

namespace Sandbox.Services;
public class Screenshot
{
public DateTime Created { get; set; }
public int Width { get; set; }
public int Height { get; set; }
public string Url { get; set; }
public string Thumb { get; set; }
public bool IsVideo { get; set; }
public string GetThumb( float width )
{
var height = width / ((float)Width / (float)Height);
return Thumb.Replace( "{width}", width.ToString() ).Replace( "{height}", height.ToString() );
}
}