mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-04-25 08:49:22 -04:00
This commit imports the C# engine code and game files, excluding C++ source code. [Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
18 lines
464 B
C#
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() );
|
|
}
|
|
}
|