Exemplo n.º 1
0
    // IHackEvent interface.
    public void onAttackHacking(esLibs.esHashtable data)
    {
        if (data == null)
        {
            return;
        }
        string message = data.get <string>(esLibs.Detector.Util.mHackEvent.KEY_MESSAGE);

        Debug.LogWarning(message);
    }
Exemplo n.º 2
0
 public void attackMemoryHacking(esLibs.esHashtable data)
 {
     if (data == null)
     {
         return;
     }
     //data.printTable("Hacking.....");
     if (this._message != null)
     {
         this._message.text = data.get <string>(esLibs.Detector.Util.mHackEvent.KEY_MESSAGE);
     }
 }