Changeset 1245
- Timestamp:
- Apr 21, 2012, 10:18:18 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/orbital/Makefile.am
r1235 r1245 3 3 4 4 orbital_SOURCES = \ 5 orbital.cpp orbital.h 5 orbital.cpp orbital.h mesh.h 6 6 orbital_CPPFLAGS = @LOL_CFLAGS@ @PIPI_CFLAGS@ 7 7 orbital_LDADD = -
trunk/orbital/orbital.cpp
r1235 r1245 24 24 25 25 #include "orbital.h" 26 #include "mesh.h" 26 27 27 28 Orbital::Orbital() 28 29 { 29 ; 30 m.AppendBox(vec3(1.0, 1.0, 1.0)); 31 m.Flush(); 30 32 } 31 33 … … 47 49 int main(int argc, char **argv) 48 50 { 49 Application app("Orbital", ivec2(1 280,720), 60.0f);51 Application app("Orbital", ivec2(1024,576), 60.0f); 50 52 51 53 #if defined _WIN32 && !defined _XBOX -
trunk/orbital/orbital.h
r1235 r1245 1 1 #if !defined __ORBITAL_H__ 2 2 #define __ORBITAL_H__ 3 4 #include "mesh.h" 3 5 4 6 class Orbital : public WorldEntity … … 13 15 virtual void TickGame(float deltams); 14 16 virtual void TickDraw(float deltams); 17 18 private: 19 Mesh m; 15 20 }; 16 21 -
trunk/win32/orbital.vcxproj
r1235 r1245 28 28 </ItemGroup> 29 29 <ItemGroup> 30 <ClInclude Include="..\orbital\mesh.h" /> 30 31 <ClInclude Include="..\orbital\orbital.h" /> 31 32 </ItemGroup> -
trunk/win32/orbital.vcxproj.filters
r1235 r1245 1 1 <?xml version="1.0" encoding="utf-8"?> 2 2 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 3 <ItemGroup> 4 <ClInclude Include="..\orbital\mesh.h" /> 5 </ItemGroup> 3 6 <ItemGroup> 4 7 <ClInclude Include="..\orbital\orbital.h" />
Note: See TracChangeset
for help on using the changeset viewer.