Browse Source

added copyright banners to new files

Shaddock Heath 9 years ago
parent
commit
1e47e7e381

+ 7 - 0
Script/AtomicWebViewEditor/clientExtensions/ClientExtensionServices.ts

@@ -1,3 +1,10 @@
+//
+// Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
+// LICENSE: Atomic Game Engine Editor and Tools EULA
+// Please see LICENSE_ATOMIC_EDITOR_AND_TOOLS.md in repository root for
+// license information: https://github.com/AtomicGameEngine/AtomicGameEngine
+//
+
 // Entry point for web view extensions -- extensions that live inside the web view
 // Entry point for web view extensions -- extensions that live inside the web view
 
 
 interface EventSubscription {
 interface EventSubscription {

+ 7 - 0
Script/AtomicWebViewEditor/clientExtensions/languageExtensions/typescript/workerprocess/TypescriptLanguageServiceWebWorker.ts

@@ -1,3 +1,10 @@
+//
+// Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
+// LICENSE: Atomic Game Engine Editor and Tools EULA
+// Please see LICENSE_ATOMIC_EDITOR_AND_TOOLS.md in repository root for
+// license information: https://github.com/AtomicGameEngine/AtomicGameEngine
+//
+
 /**
 /**
  * Typescript Language Worker - Handles bringing down the source, providing completions, and compiling.
  * Typescript Language Worker - Handles bringing down the source, providing completions, and compiling.
  * since this is a shared web worker, each editor tab will be sharing the same data.
  * since this is a shared web worker, each editor tab will be sharing the same data.

+ 7 - 0
Script/AtomicWebViewEditor/clientExtensions/languageExtensions/typescript/workerprocess/workerLoader.ts

@@ -1,3 +1,10 @@
+//
+// Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
+// LICENSE: Atomic Game Engine Editor and Tools EULA
+// Please see LICENSE_ATOMIC_EDITOR_AND_TOOLS.md in repository root for
+// license information: https://github.com/AtomicGameEngine/AtomicGameEngine
+//
+
 /**
 /**
  * Typescript Language Worker - Handles bringing down the source, providing completions, and compiling.
  * Typescript Language Worker - Handles bringing down the source, providing completions, and compiling.
  * since this is a shared web worker, each editor tab will be sharing the same data.
  * since this is a shared web worker, each editor tab will be sharing the same data.

+ 7 - 0
Script/AtomicWebViewEditor/clientExtensions/languageExtensions/typescript/workerprocess/workerProcessCommands.ts

@@ -1,3 +1,10 @@
+//
+// Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
+// LICENSE: Atomic Game Engine Editor and Tools EULA
+// Please see LICENSE_ATOMIC_EDITOR_AND_TOOLS.md in repository root for
+// license information: https://github.com/AtomicGameEngine/AtomicGameEngine
+//
+
 export interface WorkerProcessMessage<T> extends MessageEvent {
 export interface WorkerProcessMessage<T> extends MessageEvent {
     data: T;
     data: T;
 }
 }

+ 7 - 0
Script/AtomicWebViewEditor/editor/editor.ts

@@ -1,3 +1,10 @@
+//
+// Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
+// LICENSE: Atomic Game Engine Editor and Tools EULA
+// Please see LICENSE_ATOMIC_EDITOR_AND_TOOLS.md in repository root for
+// license information: https://github.com/AtomicGameEngine/AtomicGameEngine
+//
+
 // Instantiate the editor
 // Instantiate the editor
 const editor = ace.edit("editor");
 const editor = ace.edit("editor");
 
 

+ 7 - 0
Script/AtomicWebViewEditor/editor/editorConfig.ts

@@ -1,3 +1,10 @@
+//
+// Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
+// LICENSE: Atomic Game Engine Editor and Tools EULA
+// Please see LICENSE_ATOMIC_EDITOR_AND_TOOLS.md in repository root for
+// license information: https://github.com/AtomicGameEngine/AtomicGameEngine
+//
+
 import editor from "./editor";
 import editor from "./editor";
 import serviceLocator from "../clientExtensions/ServiceLocator";
 import serviceLocator from "../clientExtensions/ServiceLocator";
 import HostInterop from "../interop";
 import HostInterop from "../interop";

+ 7 - 0
Script/AtomicWebViewEditor/interop.ts

@@ -1,3 +1,10 @@
+//
+// Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
+// LICENSE: Atomic Game Engine Editor and Tools EULA
+// Please see LICENSE_ATOMIC_EDITOR_AND_TOOLS.md in repository root for
+// license information: https://github.com/AtomicGameEngine/AtomicGameEngine
+//
+
 // This is the interop file, exposing functions that can be called by the host game engine
 // This is the interop file, exposing functions that can be called by the host game engine
 import editor from "./editor/editor";
 import editor from "./editor/editor";
 import * as editorConfig from "./editor/editorConfig";
 import * as editorConfig from "./editor/editorConfig";

+ 7 - 0
Script/AtomicWebViewEditor/typings/WindowExt.d.ts

@@ -1,3 +1,10 @@
+//
+// Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
+// LICENSE: Atomic Game Engine Editor and Tools EULA
+// Please see LICENSE_ATOMIC_EDITOR_AND_TOOLS.md in repository root for
+// license information: https://github.com/AtomicGameEngine/AtomicGameEngine
+//
+
 /**
 /**
  * Defines the interface to what is available for the host to call or for the client to call on the window object
  * Defines the interface to what is available for the host to call or for the client to call on the window object
  */
  */