From 32f9203cee54d1397ce1596c386b03721fbcf8ff Mon Sep 17 00:00:00 2001 From: gered Date: Thu, 15 Aug 2013 19:42:49 -0400 Subject: [PATCH] add ScreenOrientation --- Blarg.GameFramework/Blarg.GameFramework.csproj | 1 + Blarg.GameFramework/Graphics/ScreenOrientation.cs | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 Blarg.GameFramework/Graphics/ScreenOrientation.cs diff --git a/Blarg.GameFramework/Blarg.GameFramework.csproj b/Blarg.GameFramework/Blarg.GameFramework.csproj index 030131b..d00bb26 100644 --- a/Blarg.GameFramework/Blarg.GameFramework.csproj +++ b/Blarg.GameFramework/Blarg.GameFramework.csproj @@ -80,6 +80,7 @@ + diff --git a/Blarg.GameFramework/Graphics/ScreenOrientation.cs b/Blarg.GameFramework/Graphics/ScreenOrientation.cs new file mode 100644 index 0000000..519870f --- /dev/null +++ b/Blarg.GameFramework/Graphics/ScreenOrientation.cs @@ -0,0 +1,12 @@ +using System; + +namespace Blarg.GameFramework.Graphics +{ + public enum ScreenOrientation + { + Rotation0 = 0, + Rotation90 = 90, + Rotation180 = 180, + Rotation270 = 270 + } +}