Пример #1
0
 internal Font()
 {
     glyphs=	new Dictionary<char, FontGlyphCollection>();
     maxSize=	Size2.NO_SIZE;
     bitmap=	null;
     wordSpacing=	10f;
     size=	14f;
     pOriginalSize=	14f;
     pName=	"";
     texture=	Texture.NULL;
 }
Пример #2
0
 public Image(Texture pmTexture)
 {
     texture=	pmTexture;
 }
Пример #3
0
 public Image(Sdx.Bitmap bmp)
 {
     texture=	new Texture(bmp);
 }