This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
LaptopSimulator2015/Base/Level.cs

24 lines
679 B
C#

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace LaptopSimulator2015
{
public interface Level
{
string installerHeader { get; }
string installerText { get; }
Image installerIcon { get; }
int LevelNumber { get; }
int gameClock { get; }
Panel desktopIcon { get; set; }
int installerProgressSteps { get; }
void initGame(Graphics g, Panel minigamePanel, Timer minigameTimer);
void gameTick(Graphics g, Panel minigamePanel, Timer minigameTimer, uint minigameTime);
}
}