Delete orangemart.cs

This commit is contained in:
Patrick Ulrich 2024-09-24 13:44:12 -04:00 committed by GitHub
parent 6346adf892
commit c32eddc966
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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");
}
}
}