mirror of
https://github.com/Campofinale/CampofinaleBackup.git
synced 2025-12-15 23:34:36 +00:00
TODO: MissionSystem
This commit is contained in:
parent
d9f06c2704
commit
a66f7e8d7e
20
Campofinale/Game/Mission/MissionSystem.cs
Normal file
20
Campofinale/Game/Mission/MissionSystem.cs
Normal 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()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -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));
|
||||
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user