├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md └── script_templates └── node ├── Default.cs └── default.gd /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abmarnie/godot-architecture-organization-advice/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abmarnie/godot-architecture-organization-advice/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abmarnie/godot-architecture-organization-advice/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abmarnie/godot-architecture-organization-advice/HEAD/README.md -------------------------------------------------------------------------------- /script_templates/node/Default.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abmarnie/godot-architecture-organization-advice/HEAD/script_templates/node/Default.cs -------------------------------------------------------------------------------- /script_templates/node/default.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abmarnie/godot-architecture-organization-advice/HEAD/script_templates/node/default.gd --------------------------------------------------------------------------------