Add missing files for freespace

This commit is contained in:
o9000
2015-06-12 10:41:51 +02:00
parent 5ac1a6a653
commit e2d95acfa1
2 changed files with 113 additions and 0 deletions

20
src/freespace/freespace.h Normal file
View File

@@ -0,0 +1,20 @@
/**************************************************************************
* Copyright (C) 2011 Mishael A Sibiryakov (death@junki.org)
**************************************************************************/
#ifndef FREESPACE_H
#define FREESPACE_H
#include "common.h"
#include "area.h"
typedef struct FreeSpace {
Area area;
} FreeSpace;
void cleanup_freespace();
void init_freespace_panel(void *panel);
int resize_freespace(void *obj);
#endif