From f75509b6045cd274e6805b9e683fea9c2b782c35 Mon Sep 17 00:00:00 2001
From: Andrew54757 <andrews54757@gmail.com>
Date: Sat, 2 Jul 2016 22:45:53 -0400
Subject: [PATCH] Delete index.js

---
 Easy-Entities/index.js | 50 ------------------------------------------
 1 file changed, 50 deletions(-)
 delete mode 100644 Easy-Entities/index.js

diff --git a/Easy-Entities/index.js b/Easy-Entities/index.js
deleted file mode 100644
index dac22c1..0000000
--- a/Easy-Entities/index.js
+++ /dev/null
@@ -1,50 +0,0 @@
-
-'use strict';   // dont touch
-var plugin = []; // dont touch
-this.command = []; // dont touch
-this.commandName = []; // dont touch
-this.gamemodeId = []; // dont touch
-this.gamemode = []; // dont touch
-this.addToHelp = []; // dont touch
-
-// [General]
-this.name = "Easy Entities"; // Name of plugin REQUIRED
-this.author = "Andrews54757"; // author REQUIRED
-this.description = 'Allows you to create entities easily'; // Desciprtion
-this.compatVersion = ''; // compatable with (optional)
-this.version = ''; // version REQUIRED
-
-// [Extra Commands]
-this.commandName[0] = ""; // plugin add-on command names
-this.addToHelp[0] = ""; // help command add-on (adds this string to the help command)
-this.command[0] = ''; // extra command location
-
-// [Extra Gamemodes]
-this.gamemodeId[0] = ''; // gamemodeids of extra plugin gamemodes
-this.gamemode[0] = ''; // gamemode location
-
-// [Configs]
-this.config = {
-// config1: 0,
-  
-  
-}
-this.configfile = 'config.ini'
-
-
-// [Functions]
-this.init = function (gameServer, config) {
-  this.config = config;
-  
-  // init, Used to do stuff such as overriding things
-
-
-};
-
-this.onSecond = function (gameServer) {
-
-  // called every second
-};
-
-
-module.exports = this; // dont touch