add ScreenOrientation

This commit is contained in:
Gered 2013-08-15 19:42:49 -04:00
parent 39283c095e
commit 32f9203cee
2 changed files with 13 additions and 0 deletions

View file

@ -80,6 +80,7 @@
<Compile Include="ILogger.cs" />
<Compile Include="Graphics\Color.cs" />
<Compile Include="Graphics\Image.cs" />
<Compile Include="Graphics\ScreenOrientation.cs" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
<ItemGroup>

View file

@ -0,0 +1,12 @@
using System;
namespace Blarg.GameFramework.Graphics
{
public enum ScreenOrientation
{
Rotation0 = 0,
Rotation90 = 90,
Rotation180 = 180,
Rotation270 = 270
}
}