mirror of
https://github.com/MaddyThorson/StrawberryBF.git
synced 2025-04-19 04:36:05 +08:00
14 lines
160 B
Brainfuck
14 lines
160 B
Brainfuck
|
using System;
|
||
|
namespace Strawberry
|
||
|
{
|
||
|
public abstract class Asset
|
||
|
{
|
||
|
public readonly String Path;
|
||
|
|
||
|
protected this(String path)
|
||
|
{
|
||
|
Path = path;
|
||
|
}
|
||
|
}
|
||
|
}
|