Cosmos/source/KernelGen3/Cosmos.System/FileSystem.cs
2017-07-19 12:47:18 -04:00

11 lines
247 B
C#

using System;
namespace Cosmos.System {
public class FileSystem {
public string GetFileSomething() {
var x = Cosmos.HAL.SATA.New();
return x.GetSomethingNonPlatform() + " via FileSystem";
}
}
}