重新导入obi
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
using UnityEngine;
|
||||
using System.Collections;
|
||||
using System;
|
||||
|
||||
namespace Obi
|
||||
{
|
||||
|
||||
public interface IAerodynamicConstraintsUser
|
||||
{
|
||||
bool aerodynamicsEnabled
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
float drag
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
float lift
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
public class ObiAerodynamicConstraintsData : ObiConstraints<ObiAerodynamicConstraintsBatch>
|
||||
{
|
||||
public override ObiAerodynamicConstraintsBatch CreateBatch(ObiAerodynamicConstraintsBatch source = null)
|
||||
{
|
||||
return new ObiAerodynamicConstraintsBatch();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user