Moved types to top of files, started 2D texture mapped font rendering.

This commit is contained in:
Marvin Blum
2016-07-16 02:31:53 +02:00
parent 67571025e9
commit ed39081300
11 changed files with 281 additions and 180 deletions

View File

@@ -7,7 +7,7 @@ type Dropable interface {
}
// Drops given GL objects.
// Objects must implement the Dropable inteface.
// Objects must implement the Dropable interface.
func Drop(objects []Dropable) {
for _, obj := range objects {
obj.Drop()