-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGlobal.cs
More file actions
23 lines (21 loc) · 879 Bytes
/
Copy pathGlobal.cs
File metadata and controls
23 lines (21 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ajkControls.Primitive;
namespace pluginTcl
{
public static class Global
{
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 ajkControls.IconImage Play = new ajkControls.IconImage(Properties.Resources.play);
// public static ajkControls.IconImage Pause = new ajkControls.IconImage(Properties.Resources.pause);
public static IconImage Tcl = new IconImage(Properties.Resources.tcl);
}
}
}