📄 iforce.as
字号:
package flare.physics
{
/**
* Interface representing a force within a physics simulation.
*/
public interface IForce
{
/**
* Applies this force to a simulation.
* @param sim the Simulation to apply the force to
*/
function apply(sim:Simulation):void;
} // end of interface IForce
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -