From c32eddc9662c5a9f0896b03d3cb7a61d72c5d8e3 Mon Sep 17 00:00:00 2001
From: Patrick Ulrich <ulrich.patrickr+git@gmail.com>
Date: Tue, 24 Sep 2024 13:44:12 -0400
Subject: [PATCH] Delete orangemart.cs

---
 orangemart.cs | 24 ------------------------
 1 file changed, 24 deletions(-)
 delete mode 100644 orangemart.cs

diff --git a/orangemart.cs b/orangemart.cs
deleted file mode 100644
index 50e205d..0000000
--- a/orangemart.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-using Newtonsoft.Json;
-using UnityEngine;
-using System;
-using System.Collections.Generic;
-using Oxide.Core;
-using Oxide.Core.Plugins;
-using Oxide.Game.Rust.Cui;
-using Oxide.Core.Libraries.Covalence;
-namespace Oxide.Plugins
-{
-    [Info("Plugin Name", "Author/s", "0.0.1")]
-    [Description("One sentence plugin description.")]
-    class PluginName : CovalencePlugin
-    {
-        private void OnServerInitialized()
-        {
-            AddCovalenceCommand("ping", "PingPong");
-        }
-        private void PingPong(IPlayer player, string command, string[] args)
-        {
-            player.Reply("Pong");
-        }
-    }
-}