23 lines
412 B
C#
23 lines
412 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 TreeWorld() {
|
|
}
|
|
|
|
~TreeWorld() {
|
|
Dispose();
|
|
}
|
|
|
|
public void Dispose() {
|
|
GC.SuppressFinalize(this);
|
|
}
|
|
|
|
public void Update(float modelTime, History<Input> input) {
|
|
}
|
|
}
|
|
}
|