16 lines
337 B
C#
16 lines
337 B
C#
|
using Microsoft.Xna.Framework;
|
|||
|
using Microsoft.Xna.Framework.Graphics;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace SemiColinGames {
|
|||
|
public sealed class TreeWorld : IWorld {
|
|||
|
public void Dispose() {
|
|||
|
GC.SuppressFinalize(this);
|
|||
|
}
|
|||
|
|
|||
|
public void Update(float modelTime, History<Input> input) {
|
|||
|
}
|
|||
|
}
|
|||
|
}
|