Actualizado gitignore
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,4 +1,4 @@
|
|||||||
.vscode/*
|
.vscode/*
|
||||||
.DS_Store
|
.DS_Store
|
||||||
thumbs.db
|
thumbs.db
|
||||||
bin
|
bin/*
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
#include "const.h"
|
#include "const.h"
|
||||||
#include "struct.h"
|
|
||||||
#include "director.h"
|
#include "director.h"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
|
|||||||
@@ -17,8 +17,6 @@ Map::~Map()
|
|||||||
sprite_actor = nullptr;
|
sprite_actor = nullptr;
|
||||||
background = nullptr;
|
background = nullptr;
|
||||||
|
|
||||||
//free(tile);
|
|
||||||
//free(actor);
|
|
||||||
delete[] tile;
|
delete[] tile;
|
||||||
delete[] actor;
|
delete[] actor;
|
||||||
}
|
}
|
||||||
@@ -38,8 +36,6 @@ void Map::init(SDL_Renderer *renderer, LTexture *texture1, LTexture *texture2, L
|
|||||||
|
|
||||||
src_rect = {0, 0, 0, 0};
|
src_rect = {0, 0, 0, 0};
|
||||||
dst_rect = {0, 0, 0, 0};
|
dst_rect = {0, 0, 0, 0};
|
||||||
//tile = (Uint8 *)malloc(1000 * sizeof(Uint8));
|
|
||||||
//actor = (Uint8 *)malloc(1000 * sizeof(Uint8));
|
|
||||||
w = 0;
|
w = 0;
|
||||||
h = 0;
|
h = 0;
|
||||||
room = 0;
|
room = 0;
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include "struct.h"
|
|
||||||
#include "animatedsprite.h"
|
#include "animatedsprite.h"
|
||||||
|
|
||||||
#ifndef SMARTSPRITE_H
|
#ifndef SMARTSPRITE_H
|
||||||
|
|||||||
Reference in New Issue
Block a user