Nerfed/Nerfed.Runtime/Resource/Resource.cs

10 lines
194 B
C#
Raw Permalink Normal View History

namespace Nerfed.Runtime;
public abstract class Resource
{
public string Path { get; internal set; }
internal abstract void Load(Stream stream);
internal abstract void Unload();
}