Last change
on this file since 1138 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
|
Rev | Line | |
---|
[1114] | 1 | using System;
|
---|
| 2 | using Oni.Akira;
|
---|
| 3 | using Oni.Motoko;
|
---|
| 4 |
|
---|
| 5 | namespace 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.