mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
Added raw ZuneDBApi decomp
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
namespace Microsoft.Zune.Util
|
||||
{
|
||||
public class Size
|
||||
{
|
||||
private int m_width;
|
||||
|
||||
private int m_height;
|
||||
|
||||
public int Height
|
||||
{
|
||||
get
|
||||
{
|
||||
return m_height;
|
||||
}
|
||||
set
|
||||
{
|
||||
m_height = value;
|
||||
}
|
||||
}
|
||||
|
||||
public int Width
|
||||
{
|
||||
get
|
||||
{
|
||||
return m_width;
|
||||
}
|
||||
set
|
||||
{
|
||||
m_width = value;
|
||||
}
|
||||
}
|
||||
|
||||
public Size(int width, int height)
|
||||
{
|
||||
m_width = width;
|
||||
m_height = height;
|
||||
base._002Ector();
|
||||
}
|
||||
|
||||
public Size()
|
||||
{
|
||||
m_width = 0;
|
||||
m_height = 0;
|
||||
base._002Ector();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user