/* test using the trivial Loader */

#include <stdio.h>

#include <GL/gl.h>

#include "lodestone.h"
#include "echoBackend.h"
#include "createLoader.h"

int main(int argc, char *argv[])
{
    lsInterface *ls = echoGetLSInterface();
    FILE *f;
    
    createLoaderInit(ls);
    
    if(argc > 1)
    {
        f = fopen(argv[1], "r");
    }
    else
        f = NULL;
        
    createLoad(f);

    return 0;
}
