Esempio n. 1
0
        public GameObject(IScriptGameObject scriptObject)
        {
            if (scriptObject == null)
            {
                throw new ArgumentNullException("ScriptObject is null!");
            }

            this.ScriptObject = scriptObject;
        }
Esempio n. 2
0
 public IDObject(IScriptGameObject scriptObject) : base(scriptObject)
 {
 }