-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathShip.Component.cs
More file actions
32 lines (29 loc) · 881 Bytes
/
Copy pathShip.Component.cs
File metadata and controls
32 lines (29 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
* Idmr.LfdReader.dll, Library file to read and write LFD resource files
* Copyright (C) 2009-2023 Michael Gaisser (mjgaisser@gmail.com)
* Licensed under the MPL v2.0 or later
*
* Full notice in help/Idmr.LfdReader.chm
* Version: 2.1
*/
/* CHANGE LOG
* v2.1, 221030
* [UPD] Now inherits
* v2.0, 210309
* [NEW] Created
*/
namespace Idmr.LfdReader
{
public partial class Ship : Resource
{
/// <summary>Represents a complete mesh object.</summary>
public class Component : Cplx.Component
{
/// <summary>Initialize the mesh with the specified number of Lods (levels of detail).</summary>
/// <param name="lodCount">The count to create.</param>
public Component(int lodCount) : base(lodCount) { }
/// <summary>Gets the assignment of the Component.</summary>
public MeshType MeshType { get; internal set; }
}
}
}