Advertisement
Guest User

Configuration.cs

a guest
Jul 12th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1. using Rocket.API;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6.  
  7. namespace Ster.Test
  8. {
  9.     public class Configuration : IRocketPluginConfiguration
  10.     {
  11.         public bool Enabled; //if false this plugin will not load.
  12.  
  13.         public void LoadDefaults()
  14.         {
  15.             Enabled = true;
  16.         }
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement