package onetruegod;

/* OneTrueGod is a package that allows the creation of worlds and inhabitants of said worlds in order to give
* the programmer the ability to play God. 
* 
* WARNING: Programmer's safety is not guaranteed after creation of Beings is complete. Simulation is not guaranteed
* to run smoothly due to the nature of Beings.
* @author seeibaaa
*/

//here we go
public class OneTrueGod { 

    public static void main(String[] args) {

        //creating world for two
        World world = new World(2);

        //giving self the powers of a god
        world.setGod(user);

        //creating first being with two names
        Object me = new Being({"Dizzy", "Saber"});

        //setting parameters for me
        me.setAge(19);
        me.setGender("Nonbinary");
        me.setInterests("leagueoflegends.exe", "LibraryofRuina.exe", "Titanfall2.exe", "ULTRAKILL.exe", "destiny2launcher.exe",
        "madnesscombat.exe", "LobotomyCorp.exe", "DokiDokiLiteratureClub.exe", "Mega Man X.iso", "Mega Man Zero.gba");
        me.setPronouns({"they/them", "she/her", "he/him"});

        //creating second being
        Object you = new Being("You");

        //adding beings to world
        world.addBeing(me);
        world.addBeing(you);

        //making sure they can't leave
        world.trapBeing(me);
        world.trapBeing(you);

        //creating relationships
        world.unite(me, you);

        //begin simulation (fingers crossed)
        world.startSimulation();
    }
}
Edit
Pub: 09 Jul 2023 21:59 UTC
Edit: 22 Dec 2023 01:17 UTC
Views: 640