From 3ddaea4cb0492730855297b395077e9335469799 Mon Sep 17 00:00:00 2001 From: liteng <930372551@qq.com> Date: Wed, 19 Sep 2018 12:08:23 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=A9=E7=A9=BA=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ShadowEditor.Web/src/object/Sky.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ShadowEditor.Web/src/object/Sky.js b/ShadowEditor.Web/src/object/Sky.js index e69de29b..d376aa75 100644 --- a/ShadowEditor.Web/src/object/Sky.js +++ b/ShadowEditor.Web/src/object/Sky.js @@ -0,0 +1,10 @@ +import BaseObject from './BaseObject'; + +function Sky() { + BaseObject.call(this); +} + +Sky.prototype = Object.create(BaseObject.prototype); +Sky.prototype.constructor = Sky; + +export default Sky; \ No newline at end of file