source: OniSplit/Physics/ObjectGeometry.cs@ 1117

Last change on this file since 1117 was 1114, checked in by iritscen, 5 years ago

Adding OniSplit source code (v0.9.99.0). Many thanks to Neo for all his work over the years.

File size: 373 bytes
Line 
1using System;
2using Oni.Akira;
3using Oni.Motoko;
4
5namespace Oni.Physics
6{
7 internal class ObjectGeometry
8 {
9 public Geometry Geometry;
10 public GunkFlags Flags;
11
12 public ObjectGeometry()
13 {
14 }
15
16 public ObjectGeometry(Geometry geometry)
17 {
18 this.Geometry = geometry;
19 }
20 }
21}
Note: See TracBrowser for help on using the repository browser.