Beginning work on render components of framework.

This commit is contained in:
2019-12-12 14:44:51 -05:00
parent 29daabdaf6
commit 713df6d111
4 changed files with 46 additions and 20 deletions

View File

@@ -0,0 +1,13 @@
namespace RecrownedAthenaeum.Render {
public class SpriteBatch {
public SpriteBatch() {
}
public void Begin() {
}
public void End() {
}
}
}