mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-06-02 20:04:32 +00:00
19 lines
319 B
C#
19 lines
319 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace stonevox.Mod
|
|
{
|
|
public class FileReference
|
|
{
|
|
public string file { get; }
|
|
|
|
public FileReference(string file)
|
|
{
|
|
this.file = file;
|
|
}
|
|
}
|
|
}
|