From b56add981c2f520789b97d1ee6f71dae41e8c900 Mon Sep 17 00:00:00 2001 From: troido Date: Sat, 8 Feb 2020 19:22:00 +0100 Subject: no templates in the world; only pre-entities --- src/main.rs | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index d2cfd13..322a13b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -23,6 +23,7 @@ mod componentparameter; mod encyclopedia; mod template; mod roomtemplate; +mod player; pub use self::pos::Pos; use self::gameserver::GameServer; @@ -220,18 +221,6 @@ fn default_assemblages() -> Encyclopedia { "height": ["float", 0.1] }] ] - }, - "player": { - "arguments": [["name", "string", null]], - "components": [ - ["Visible", { - "sprite": ["string", "player"], - "height": ["float", 1.0] - }], - ["Player", { - "name": ["arg", "name"] - }] - ] } })).unwrap() } -- cgit