Ejemplo n.º 1
0
        //TODO: #Deadcode: The idea here was to have an entity in the manager so that we can find the starsystem for a specific manager. (currently impossible?)
        //the ownership was so that we could do this per faction maybe as well, and have faction specific data here?
        //maybe the first problem could be solved via a dictionary<manager, starSystem> in Game or something.
        public static Entity CreateSystemAsEntity(EntityManager sysMan, StarSystem starSys, Entity factionEntity)
        {
            var sysdb = new StarSystemDB(starSys);


            //var changeListnerDB = new EntityChangeListner();

            List <BaseDataBlob> datablobs = new List <BaseDataBlob>()
            {
                sysdb,
                //changeListnerDB
            };
            var sysEnt = new Entity(sysMan, datablobs);

            new OwnedDB(factionEntity, sysEnt);
            return(sysEnt);
        }
Ejemplo n.º 2
0
 public StarSystemDB(StarSystemDB db)
 {
     StarSystem = db.StarSystem;
 }