initial commit

This commit is contained in:
chi
2019-05-04 06:53:50 +09:00
commit cca9ed2bb4
277 changed files with 34473 additions and 0 deletions

23
util/Color.cs Normal file
View File

@@ -0,0 +1,23 @@
using System;
namespace ThoughtWorks.QRCode.Codec.Util
{
public struct Color_Fields{
public readonly static int GRAY = 0xAAAAAA;
public readonly static int LIGHTGRAY = 0xBBBBBB;
public readonly static int DARKGRAY = 0x444444;
public readonly static int BLACK = 0x000000;
public readonly static int WHITE = 0xFFFFFF;
public readonly static int BLUE = 0x8888FF;
public readonly static int GREEN = 0x88FF88;
public readonly static int LIGHTBLUE = 0xBBBBFF;
public readonly static int LIGHTGREEN = 0xBBFFBB;
public readonly static int RED = 0xFF88888;
public readonly static int ORANGE = 0xFFFF88;
public readonly static int LIGHTRED = 0xFFBBBB;
}
public interface Color
{
}
}