SharpMod.RubyPlugin.RubyPlugin C# (CSharp) Method

RubyPlugin() public method

public RubyPlugin ( string name, string author, string description, System.Version version, UnloadDelegate unload ) : System
name string
author string
description string
version System.Version
unload UnloadDelegate
return System
        public RubyPlugin(string name, string author, string description, Version version, UnloadDelegate unload)
        {
            this.name = name;
            this.author = author;
            this.description = description;
            this.version = version;
            this.unload = unload;
        }