mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 12:06:34 +00:00
17 lines
445 B
C#
17 lines
445 B
C#
using Daybreak.Shared.Services.Window;
|
|
using Daybreak.Shared.Utils;
|
|
|
|
namespace Daybreak.Linux.Services.Window;
|
|
|
|
//TODO: Implement window manipulation for Linux. This is currently a stub that does nothing, as default window functionality is kept on Linux
|
|
internal sealed class WindowManipulationService : IWindowManipulationService
|
|
{
|
|
public void DragWindow()
|
|
{
|
|
}
|
|
|
|
public void ResizeWindow(ResizeDirection direction)
|
|
{
|
|
}
|
|
}
|