mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-06-02 20:04:32 +00:00
28 lines
480 B
C#
28 lines
480 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace stonevox.Mod
|
|
{
|
|
public class Alias
|
|
{
|
|
public string name;
|
|
public FileReference file;
|
|
}
|
|
|
|
public class FunctionAlias
|
|
{
|
|
public enum endpoint
|
|
{
|
|
client,
|
|
server
|
|
}
|
|
|
|
public string name;
|
|
public FileReference controller;
|
|
public endpoint enpoint;
|
|
}
|
|
}
|