view src/tools.d @ 4:292df259cc85

view + sprite consumers, animated sprite working
author fred@reichbier.de
date Fri, 18 Jul 2008 16:12:41 +0200
parents fc2f936a961c
children
line wrap: on
line source

module tools;

import tango.io.File;

char[] read_file_contents(char[] filename) {
    auto file = new File (filename);
    auto content = cast(char[]) file.read();

    return content;
}