forked from mirrors/NBTExplorer
24 lines
476 B
C#
24 lines
476 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
using System.IO;
|
|||
|
using Ionic.Zlib;
|
|||
|
|
|||
|
namespace Substrate
|
|||
|
{
|
|||
|
public class PlayerFile : NBTFile
|
|||
|
{
|
|||
|
public PlayerFile (string path)
|
|||
|
: base(path)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public PlayerFile (string path, string name)
|
|||
|
: base("")
|
|||
|
{
|
|||
|
string file = name + ".dat";
|
|||
|
_filename = Path.Combine(path, file);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|