Package nl.nuggit.randomstranger.language

Examples of nl.nuggit.randomstranger.language.Memory


    }

    public ChatBot(String name, OutputStream outputStream) {
        this.name = name;
        this.out = new PrintWriter(outputStream, true);
        this.memory = new Memory();
        this.temper = new Temper();
        start();
        System.out.println(name + " has started");
    }
View Full Code Here

TOP

Related Classes of nl.nuggit.randomstranger.language.Memory

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.