mirror of
https://github.com/sochix/TLSharp.git
synced 2026-04-06 06:55:06 +00:00
parent
0d55940c12
commit
133b9fdf6c
784 changed files with 17201 additions and 10048 deletions
|
|
@ -7,7 +7,7 @@ using System.Threading.Tasks;
|
|||
using TeleSharp.TL;
|
||||
namespace TeleSharp.TL
|
||||
{
|
||||
[TLObject(-1361650766)]
|
||||
[TLObject(-1361650766)]
|
||||
public class TLMaskCoords : TLObject
|
||||
{
|
||||
public override int Constructor
|
||||
|
|
@ -18,33 +18,33 @@ namespace TeleSharp.TL
|
|||
}
|
||||
}
|
||||
|
||||
public int n {get;set;}
|
||||
public double x {get;set;}
|
||||
public double y {get;set;}
|
||||
public double zoom {get;set;}
|
||||
public int n { get; set; }
|
||||
public double x { get; set; }
|
||||
public double y { get; set; }
|
||||
public double zoom { get; set; }
|
||||
|
||||
|
||||
public void ComputeFlags()
|
||||
{
|
||||
|
||||
}
|
||||
public void ComputeFlags()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public override void DeserializeBody(BinaryReader br)
|
||||
{
|
||||
n = br.ReadInt32();
|
||||
x = br.ReadDouble();
|
||||
y = br.ReadDouble();
|
||||
zoom = br.ReadDouble();
|
||||
x = br.ReadDouble();
|
||||
y = br.ReadDouble();
|
||||
zoom = br.ReadDouble();
|
||||
|
||||
}
|
||||
|
||||
public override void SerializeBody(BinaryWriter bw)
|
||||
{
|
||||
bw.Write(Constructor);
|
||||
bw.Write(Constructor);
|
||||
bw.Write(n);
|
||||
bw.Write(x);
|
||||
bw.Write(y);
|
||||
bw.Write(zoom);
|
||||
bw.Write(x);
|
||||
bw.Write(y);
|
||||
bw.Write(zoom);
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue