Files
StrawberryBF/src/Assets/Asset.bf

14 lines
160 B
Beef
Raw Normal View History

2020-06-14 20:48:01 -07:00
using System;
namespace Strawberry
{
public abstract class Asset
{
public readonly String Path;
protected this(String path)
{
Path = path;
}
}
}