libpd-sys 0.3.4

Rust bindings for libpd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using LibPDBinding.Managed.Data;
using System;

namespace LibPDBinding.Managed.Events
{
	public class FloatEventArgs : EventArgs
	{
		public string Receiver { get; private set; }

		public Float Float { get; private set; }

		public FloatEventArgs (string text, float value)
		{
			Receiver = text;
			Float = new Float (value);
		}
	}
}