mirror of
https://github.com/antopilo/Nuake.git
synced 2026-01-04 22:10:34 +03:00
19 lines
298 B
C#
19 lines
298 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Nuake.Net
|
|
{
|
|
class Renderer
|
|
{
|
|
// Renderer settings
|
|
public bool VSync { get; set; }
|
|
|
|
public float ResolutionScale { get; set; }
|
|
|
|
|
|
}
|
|
}
|