* Fixed regression bug with DllLoader

+ added missing Font functions
* using alias template parameter for DrawableImpl now

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1337 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
trass3r 2010-01-07 22:00:45 +00:00
parent 0baf8e9b46
commit 8293de5c50
15 changed files with 297 additions and 280 deletions

View file

@ -37,8 +37,15 @@ import dsfml.graphics.drawableimpl;
* helper functions to draw simple shapes like
* lines, rectangles, circles, etc.
*/
class Shape : Drawableimpl!(sfShape)
class Shape : Drawableimpl!("sfShape")
{
private:
this (void* ptr)
{
super(ptr);
}
public:
this()
{
super();
@ -271,10 +278,6 @@ class Shape : Drawableimpl!(sfShape)
}
private:
this (void* ptr)
{
super(ptr);
}
extern (C)
{