19 lines
563 B
C#
19 lines
563 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace TmatrixCodeGenerator
|
|
{
|
|
class GlobalClass
|
|
{
|
|
public static bool gbGenerateBGWithVImage = false;
|
|
public static bool gbGenerateVImage = false;
|
|
public static bool gbGenerateBGWithoutVImage = false;
|
|
public static bool gbGenerateBGWithImage = false;
|
|
public static bool gbGenPageSet = false;
|
|
public static int[] gPointType = new int[4];
|
|
public static int[] gPointDPI = new int[4];
|
|
}
|
|
}
|