Skip to content

Instantly share code, notes, and snippets.

@BobGneu
Last active January 27, 2019 00:00
Show Gist options
  • Save BobGneu/abe248f77fcc1910a7c9de6e7bf65fa5 to your computer and use it in GitHub Desktop.
Save BobGneu/abe248f77fcc1910a7c9de6e7bf65fa5 to your computer and use it in GitHub Desktop.
RPH Plugin - Hello World Example
[assembly: Rage.Attributes.Plugin("RPHDemo", Description = "This is a demo plugin", Author = "Bob Chatman - @Bob@mastodon.gamedev.place")]
namespace RPHDemo
{
using Rage;
public class HelloWorld
{
public static void Main()
{
Game.DisplaySubtitle("Hello World!");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment