Package it.freedomotic.objects.impl

Examples of it.freedomotic.objects.impl.Person


    }

    protected void onRun() {
        for (EnvObjectLogic object : EnvObjectPersistence.getObjectList()) {
            if (object instanceof it.freedomotic.objects.impl.Person) {
                Person person = (Person) object;
                FreedomPoint location = randomLocation();
                person.getPojo().getCurrentRepresentation()
                        .setOffset((int) location.getX(), (int) location.getY());
                person.setChanged(true);
            }
        }
    }
View Full Code Here

TOP

Related Classes of it.freedomotic.objects.impl.Person

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.