aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS_TheReturn/IShiftOSWindow.cs
blob: 1da789dd00961eb6f4cbcd21517d154e093c9790 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ShiftOS.Engine
{
    public interface IShiftOSWindow
    {
        void OnLoad();

        void OnSkinLoad();
        bool OnUnload();
        void OnUpgrade();
    }
}