v0.14.6.0

This commit is contained in:
Joonas Rikkonen
2021-06-17 17:54:52 +03:00
parent 3f324b14e8
commit c27e2ea5ab
348 changed files with 13156 additions and 4266 deletions
@@ -88,6 +88,7 @@ namespace Microsoft.Xna.Framework {
#region Events
public event EventHandler<FileDropEventArgs> FileDropped;
public event EventHandler<EventArgs> ClientSizeChanged;
public event EventHandler<EventArgs> OrientationChanged;
public event EventHandler<EventArgs> ScreenDeviceNameChanged;
@@ -131,7 +132,7 @@ namespace Microsoft.Xna.Framework {
protected void OnDeactivated ()
{
}
protected void OnOrientationChanged ()
{
EventHelpers.Raise(this, OrientationChanged, EventArgs.Empty);
@@ -153,7 +154,12 @@ namespace Microsoft.Xna.Framework {
}
#endif
protected internal abstract void SetSupportedOrientations (DisplayOrientation orientations);
protected internal abstract void SetSupportedOrientations (DisplayOrientation orientations);
protected abstract void SetTitle (string title);
protected void OnFileDropped(FileDropEventArgs e)
{
EventHelpers.Raise(this, FileDropped, e);
}
}
}