aboutsummaryrefslogtreecommitdiff
path: root/src/controllers/KeyController.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/controllers/KeyController.ts')
-rw-r--r--src/controllers/KeyController.ts36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/controllers/KeyController.ts b/src/controllers/KeyController.ts
deleted file mode 100644
index 68eed3961..000000000
--- a/src/controllers/KeyController.ts
+++ /dev/null
@@ -1,36 +0,0 @@
-import { FieldController } from "./FieldController"
-import { Utils } from "../Utils";
-
-export class KeyController extends FieldController {
- get Name():string {
- return this.name;
- }
-
- constructor(private name:string){
- super(Utils.GenerateDeterministicGuid(name));
- }
-
- TrySetValue(value: any): boolean {
- throw new Error("Method not implemented.");
- }
-
- GetValue() {
- return this.Name;
- }
-
- Copy(): FieldController {
- return this;
- }
-
-
-}
-
-export namespace KeyStore {
- export let Prototype = new KeyController("Prototype");
- export let X = new KeyController("Y");
- export let Y = new KeyController("Y");
- export let Width = new KeyController("Width");
- export let Height = new KeyController("Height");
- export let Data = new KeyController("Data");
- export let View = new KeyController("View");
-} \ No newline at end of file