-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGlobal.cs
More file actions
30 lines (28 loc) · 1.46 KB
/
Copy pathGlobal.cs
File metadata and controls
30 lines (28 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ajkControls.Primitive;
namespace pluginVerilog
{
public static class Global
{
public static SetupForm SetupForm = new SetupForm();
public static CodeDrawStyle CodeDrawStyle = new CodeDrawStyle();
public static class Icons
{
public static IconImage Exclamation = new IconImage(Properties.Resources.exclamation);
public static IconImage ExclamationBox = new IconImage(Properties.Resources.exclamationBox);
public static IconImage Play = new IconImage(Properties.Resources.play);
public static IconImage Pause = new IconImage(Properties.Resources.pause);
public static IconImage Verilog = new IconImage(Properties.Resources.verilog);
public static IconImage VerilogHeader = new IconImage(Properties.Resources.verilogHeader);
public static IconImage SystemVerilog = new IconImage(Properties.Resources.systemVerilog);
public static IconImage SystemVerilogHeader = new IconImage(Properties.Resources.systemVerilogHeader);
public static IconImage IcarusVerilog = new IconImage(Properties.Resources.icarusVerilog);
public static IconImage NewBadge = new IconImage(Properties.Resources.newBadge);
public static IconImage MedalBadge = new IconImage(Properties.Resources.medalBadge);
}
}
}