forked from mirror/DotRecast
15 lines
344 B
C#
15 lines
344 B
C#
|
namespace DotRecast.Tool.PublishToUniRecast;
|
|||
|
|
|||
|
public class CsProj
|
|||
|
{
|
|||
|
public readonly string RootPath;
|
|||
|
public readonly string Name;
|
|||
|
public readonly string TargetPath;
|
|||
|
|
|||
|
public CsProj(string rootPath, string name, string targetPath)
|
|||
|
{
|
|||
|
RootPath = rootPath;
|
|||
|
Name = name;
|
|||
|
TargetPath = targetPath;
|
|||
|
}
|
|||
|
}
|