Very basic stuff working on linux 32-bit with dmd and phobos2.

This commit is contained in:
Steve King 2010-08-10 21:55:30 -07:00
commit 67f0225e42
152 changed files with 113 additions and 0 deletions

View file

@ -1,65 +0,0 @@
/**
*
* enCurseD Renderer Class
*
* Authors: Tim Burrell
* Copyright: Copyright (c) 2007
* License: <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>
*
**/
////////////////////////////////////////////////////////////////////////////
// Module
///////////////////////////////////////
module enCurseD.render.Renderer;
////////////////////////////////////////////////////////////////////////////
// Imports
///////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
// Class Definition
///////////////////////////////////////
/**
* Renderer Class
**/
class Renderer {
////////////////////////////////////////////////////////////////////
// Construction
///////////////////////////////
/**
* Default Constructor
**/
this() {
}
/**
* Destructor
**/
~this() {
}
////////////////////////////////////////////////////////////////////
// Public functions
///////////////////////////////
/**
* Initialize the renderer
**/
abstract void initialize();
////////////////////////////////////////////////////////////////////
private:
////////////////////////////////////////////////////////////////////
// Private Functions
///////////////////////////////
////////////////////////////////////////////////////////////////////
// Private Members
///////////////////////////////
}