Changes between Version 13 and Version 14 of frontend/features

Show
Ignore:
Author:
robertc (IP: 192.168.0.1)
Timestamp:
01/07/08 20:03:19 (10 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • frontend/features

    v13 v14  
    33libRocket is a C++ interface middleware package designed for game applications. At its core it is based on the popular HTML and CSS specifications - we've taken most of the latest implementations used in web browsers now as well as a few of the most useful proposed additions to the specifications. It contains a full set of widgets so you can get creating screens right out of the box. 
    44 
     5[[Image(htmlcss.gif, nolink, align="left")]] 
    56== Why HTML and CSS? == 
    6  
    77 - There's no point in re-inventing the wheel! The HTML and CSS standards have gone through many revisions and updates and so now offer a very powerful and easy-to-use solution to interface problems. 
    88 - They are two very widely known standards so you don't have learn a completely new toolset. 
    99 - Consistency is a cinch: no longer will you have to go through every screen and fix something up every time someone changes their mind. Automatic layout and the separation of content from the visuals guarantees that. 
     10{{{ 
     11#!html 
     12<div class="clear">&nbsp;</div> 
     13}}} 
    1014 
    1115[[Image(template.gif, nolink, align="left")]]