mirror of
https://git.muiegratis.online/suikoakari/Campofinale
synced 2025-12-21 14:04:38 +01:00
21 lines
320 B
C#
21 lines
320 B
C#
using Campofinale.Database;
|
|
|
|
namespace Campofinale.Game.Mission
|
|
{
|
|
public class MissionSystem
|
|
{
|
|
public Player owner;
|
|
public MissionSystem(Player o)
|
|
{
|
|
owner = o;
|
|
}
|
|
public void Save()
|
|
{
|
|
|
|
}
|
|
public void Load()
|
|
{
|
|
}
|
|
}
|
|
}
|