StrawberryBF/src/Assets/Asset.bf

14 lines
160 B
Brainfuck
Raw Normal View History

2020-06-15 11:48:01 +08:00
using System;
namespace Strawberry
{
public abstract class Asset
{
public readonly String Path;
protected this(String path)
{
Path = path;
}
}
}