TODO: MissionSystem

This commit is contained in:
AlessandroCH
2025-05-10 16:56:37 +02:00
parent d9f06c2704
commit a66f7e8d7e
2 changed files with 23 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
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()
{
}
}
}

View File

@@ -13,6 +13,7 @@ using Campofinale.Game.Gacha;
using Campofinale.Game.Spaceship;
using Campofinale.Game.Dungeons;
using Campofinale.Game.Factory;
using Campofinale.Game.Mission;
namespace Campofinale
@@ -94,6 +95,7 @@ namespace Campofinale
public GachaManager gachaManager;
public BitsetManager bitsetManager;
public FactoryManager factoryManager;
public MissionSystem missionSystem;
public int teamIndex = 0;
public List<Team> teams= new List<Team>();
public List<Mail> mails = new List<Mail>();
@@ -123,6 +125,7 @@ namespace Campofinale
gachaManager = new(this);
spaceshipManager = new(this);
factoryManager = new(this);
missionSystem = new(this);
receivorThread = new Thread(new ThreadStart(Receive));
}