summaryrefslogtreecommitdiff
path: root/EncryptedData/int_e.cs
blob: 1622268f217052a22cc202a0a4267feef651a465 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Assets.Scripts.Tools.Cheat
{
    // encrypted integer
    class int_e : IEquatable<int_e>, IComparable<int_e>, IEncryptedData
    {
        private bool _isInit;
        private int _data;
        private int _verifynum;
        private int _backData;
        private static int _randomSeed;

        public int GetData()
        {
            return _data;
        }

        public void SetData(int value)
        {

        }

        public void SetDefaultValue()
        {
            SetData(0);
        }

        private bool VerifyData()
        {

        }

    }
}