コード例 #1
0
ファイル: Theme.cs プロジェクト: salwanbrother/salwan
        private void SetCurrent()
        {
            Pending = GetPointer();
            bool flag = Current.Position == Pending.Position;

            if (flag)
            {
            }
            else
            {
                Current = GetPointer();
                Cursor  = Current.Cursor;
            }
        }
コード例 #2
0
ファイル: Theme.cs プロジェクト: salwanbrother/salwan
 public Pointer(Cursor c, byte p)
 {
     this     = new Theme.Pointer();
     Cursor   = c;
     Position = p;
 }