An SDL wrapper library for .NET.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
413 B

namespace DotSDL.Graphics {
public enum CoordinateSystem {
/// <summary>
/// Uses screen space coordinates. This directly maps to pixels in the window.
/// </summary>
ScreenSpace,
/// <summary>
/// Uses world space coordinates. This maps to a location based on the position of
/// the camera, or view.
/// </summary>
WorldSpace
}
}