GlobalEvent.Call C# (CSharp) Méthode

Call() public méthode

public Call ( ) : bool
Résultat bool
    public bool Call()
    {
        bool ok = false;
        if(this.fileOk && !this.eventStarted)
        {
            this.eventStarted = true;
            this.gameEvent.StartEvent(this);
            ok = true;
        }
        return ok;
    }