first commit

This commit is contained in:
murdle
2026-03-01 02:38:58 +02:00
commit 19250b9db4
19111 changed files with 4358159 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
#include "stdafx.h"
#include "TexOffs.h"
#include "Model.h"
Model::Model()
{
riding = false;
young=true;
texWidth=64;
texHeight=32;
}
void Model::setMapTex(wstring id, int x, int y)
{
mappedTexOffs[id]=new TexOffs(x, y);
}
TexOffs *Model::getMapTex(wstring id)
{
// 4J-PB - assuming there will always be this one
return mappedTexOffs[id];
}