Skip to content

Commit

Permalink
Some minor tweaks and comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kieranmillar committed Nov 18, 2017
1 parent 39b5543 commit e11acfa
Show file tree
Hide file tree
Showing 7 changed files with 428 additions and 362 deletions.
24 changes: 24 additions & 0 deletions src/Editor/bar.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
* lem3edit
* Copyright (C) 2008-2009 Carl Reinke
* Copyright (C) 2017 Kieran Millar
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/

/*
This file includes code to deal eith the object bar at the bottom of the editor screen
TODO: All this stuff.
*/
39 changes: 39 additions & 0 deletions src/Editor/bar.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/*
* lem3edit
* Copyright (C) 2008-2009 Carl Reinke
* Copyright (C) 2017 Kieran Millar
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/

#ifndef BAR_HPP
#define BAR_HPP

class Bar
{
public:


int barScrollX;
int barMaxPERM;
int barMaxTEMP;
int barMaxObj;


Bar(void) { /* nothing to do */ }

};

#endif // EDITOR_HPP
Loading

0 comments on commit e11acfa

Please sign in to comment.