mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[Machine] Readd some bad methods
This commit is contained in:
@@ -114,5 +114,44 @@ namespace SabreTools.Library.Dats
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Property updaters
|
||||
|
||||
public void AppendName(string append)
|
||||
{
|
||||
Name += append;
|
||||
}
|
||||
|
||||
public void AppendDescription(string append)
|
||||
{
|
||||
Description += append;
|
||||
}
|
||||
|
||||
public void UpdateName(string update)
|
||||
{
|
||||
Name = update;
|
||||
}
|
||||
|
||||
public void UpdateDescription(string update)
|
||||
{
|
||||
Description = update;
|
||||
}
|
||||
|
||||
public void UpdateCloneOf(string update)
|
||||
{
|
||||
CloneOf = update;
|
||||
}
|
||||
|
||||
public void UpdateRomOf(string update)
|
||||
{
|
||||
RomOf = update;
|
||||
}
|
||||
|
||||
public void UpdateSampleOf(string update)
|
||||
{
|
||||
SampleOf = update;
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user