17 lines
433 B
C#
17 lines
433 B
C#
using global::SM64Lib.Data;
|
|
using System;
|
|
|
|
namespace SM64Lib.Levels;
|
|
|
|
public class OriginalLevelManager : ILevelManager
|
|
{
|
|
public void LoadLevel(Level lvl, RomManager rommgr, ushort LevelID, uint segAddress)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public LevelSaveResult SaveLevel(Level lvl, RomManager rommgr, BinaryData output, ref uint curOff)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |