add ScreenOrientation
This commit is contained in:
parent
39283c095e
commit
32f9203cee
|
@ -80,6 +80,7 @@
|
||||||
<Compile Include="ILogger.cs" />
|
<Compile Include="ILogger.cs" />
|
||||||
<Compile Include="Graphics\Color.cs" />
|
<Compile Include="Graphics\Color.cs" />
|
||||||
<Compile Include="Graphics\Image.cs" />
|
<Compile Include="Graphics\Image.cs" />
|
||||||
|
<Compile Include="Graphics\ScreenOrientation.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
|
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
12
Blarg.GameFramework/Graphics/ScreenOrientation.cs
Normal file
12
Blarg.GameFramework/Graphics/ScreenOrientation.cs
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
using System;
|
||||||
|
|
||||||
|
namespace Blarg.GameFramework.Graphics
|
||||||
|
{
|
||||||
|
public enum ScreenOrientation
|
||||||
|
{
|
||||||
|
Rotation0 = 0,
|
||||||
|
Rotation90 = 90,
|
||||||
|
Rotation180 = 180,
|
||||||
|
Rotation270 = 270
|
||||||
|
}
|
||||||
|
}
|
Reference in a new issue