using CommonAI.Zone.Instance;
using CommonAI.Zone.ZoneEditor;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace CommonAI.Zone.Helper
{
    public class EnvironmentVar
    {
        public static bool ALWAYS_SYNC_ENVIRONMENT_VAR = false;

        public string Key { get; private set; }
        public bool SyncToClient { get; private set; }
        public object Value { get; internal set; }

        public EnvironmentVar(string key, bool sync, object obj)
        {
            this.Key = key;
            this.SyncToClient = sync;
            this.Value = obj;
        }
    }

}