mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-10-07 13:06:51 -04:00
20 lines
339 B
C#
20 lines
339 B
C#
using System;
|
|
using System.Drawing;
|
|
|
|
namespace ClassicalSharp {
|
|
|
|
public struct DrawTextArgs {
|
|
|
|
public string Text;
|
|
|
|
public bool UseShadow;
|
|
public bool SkipPartsCheck;
|
|
|
|
public DrawTextArgs( string text, bool useShadow ) {
|
|
Text = text;
|
|
UseShadow = useShadow;
|
|
SkipPartsCheck = false;
|
|
}
|
|
}
|
|
}
|