18 lines
364 B
Plaintext
18 lines
364 B
Plaintext
URL: https://wiki.studiominus.nl/snippets/entrypoint.html
|
|
Title: People Playground Modding - Empty entry point
|
|
==================================================
|
|
|
|
Empty entry point
|
|
This code snippet is an entry point template.
|
|
using UnityEngine;
|
|
|
|
namespace Mod
|
|
{
|
|
public class Mod
|
|
{
|
|
public static void Main()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |